diff options
author | Nick Schonning <nschonni@gmail.com> | 2023-04-04 10:33:33 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-04 16:33:33 +0200 |
commit | a425915ce7d1148e9505c87889936c4c497061dd (patch) | |
tree | 11adc727d0f7b4a452eb6ca5413fe8231b455e8f /app/javascript/packs | |
parent | b80a7b031bdfc79e0498bb784abed9b7749c6f45 (diff) |
HTML string attributes set as booleans (#24408)
Diffstat (limited to 'app/javascript/packs')
-rw-r--r-- | app/javascript/packs/public.jsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/packs/public.jsx b/app/javascript/packs/public.jsx index a5e2014f7..3db6c5c6a 100644 --- a/app/javascript/packs/public.jsx +++ b/app/javascript/packs/public.jsx @@ -291,10 +291,10 @@ function main() { if (sidebar.classList.contains('visible')) { document.body.style.overflow = null; - toggleButton.setAttribute('aria-expanded', false); + toggleButton.setAttribute('aria-expanded', 'false'); } else { document.body.style.overflow = 'hidden'; - toggleButton.setAttribute('aria-expanded', true); + toggleButton.setAttribute('aria-expanded', 'true'); } toggleButton.classList.toggle('active'); |