Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/949d7646385ec4814f4709dba6ef0f99f4a1af37 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Use popper placement for tooltip arrow

pull/3090/head
Mark McDowall 6 years ago
parent 5c2cb4de80
commit 949d764638

@ -94,6 +94,8 @@ class Tooltip extends Component {
<Portal>
<Popper
placement={position}
// Disable events to improve performance when many tooltips
// are shown (Quality Definitions for example).
eventsEnabled={false}
modifiers={{
preventOverflow: {
@ -103,7 +105,7 @@ class Tooltip extends Component {
}
}}
>
{({ ref, style, scheduleUpdate }) => {
{({ ref, style, placement, scheduleUpdate }) => {
this._scheduleUpdate = scheduleUpdate;
return (
@ -126,7 +128,7 @@ class Tooltip extends Component {
className={classNames(
styles.arrow,
styles[kind],
styles[position]
styles[placement.split('-')[0]]
)}
/>

Loading…
Cancel
Save