mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-01-25 06:41:36 -07:00
Properly set aria-hidden on note content only if CW is present and show content has not been clicked
This commit is contained in:
parent
029d12f8ca
commit
02a6a933cf
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@
|
|||
<div
|
||||
class="body"
|
||||
v-bind="{
|
||||
'aria-hidden': !showContent ? 'true' : null,
|
||||
'aria-hidden': note.cw && !showContent ? 'true' : null,
|
||||
tabindex: !showContent ? '-1' : null,
|
||||
}"
|
||||
>
|
||||
|
|
Loading…
Reference in a new issue