diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-10-15 14:15:52 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-10-15 14:20:06 -0300 |
commit | 1cb1ddc3d678983184abf7955a5e2fa38ba49558 (patch) | |
tree | 75ef472296083ab64b381640e36134afb4b33597 /src/static/js/client/hash-link.js | |
parent | 7a4f24adc2fe4f8340e9e2340a25f7e62d38c7fd (diff) |
uninteresting eslint fixes
Diffstat (limited to 'src/static/js/client/hash-link.js')
-rw-r--r-- | src/static/js/client/hash-link.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/static/js/client/hash-link.js b/src/static/js/client/hash-link.js index e82e06c5..4384d35a 100644 --- a/src/static/js/client/hash-link.js +++ b/src/static/js/client/hash-link.js @@ -191,7 +191,7 @@ function expandDetails(target) { details.open = true; } } else if (target.nodeName === 'DETAILS') { - details.open = true; + target.open = true; } } |