Skip to content

Commit

Permalink
web/PopoverContainer: hide for screen readers when not expanded
Browse files Browse the repository at this point in the history
  • Loading branch information
wukko committed Dec 18, 2024
1 parent f3ff365 commit 5860efa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/components/misc/PopoverContainer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
};
</script>

<div {id} class="popover {expandStart}" class:expanded>
<div {id} class="popover {expandStart}" aria-hidden={!expanded} class:expanded>
{#if renderPopover}
<slot></slot>
{/if}
Expand Down

0 comments on commit 5860efa

Please sign in to comment.