Skip to content

Commit b79a337

Browse files
committed
Fix"
Signed-off-by: Alexander Platov <[email protected]>
1 parent b85596c commit b79a337

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/ui/src/components/TooltipInstance.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@
327327
</svg>
328328
{/if}
329329

330-
{#if (fullScreen && document.fullscreen) || (!fullScreen && !document.fullscreen)}
330+
{#if (fullScreen && document.fullscreenElement != null) || (!fullScreen && document.fullscreenElement == null)}
331331
{#if $tooltip.kind === 'popup'}
332332
<!-- svelte-ignore a11y-no-static-element-interactions -->
333333
<div

0 commit comments

Comments
 (0)