fix: prevent Toggle Starred and Indexes from hiding TOC

This commit is contained in:
NandkishorJadoun 2026-01-09 14:58:14 +05:30
parent 61d5f2b08c
commit 53529c042a
2 changed files with 2 additions and 2 deletions

View file

@ -61,7 +61,7 @@ const toggleIndexes = (value: boolean) => {
</template> </template>
<style> <style>
.indexes-only li:not(.index) { .indexes-only .vp-doc li:not(.index) {
display: none; display: none;
} }
</style> </style>

View file

@ -47,7 +47,7 @@ const toggleStarred = (value: boolean) => {
</template> </template>
<style> <style>
.starred-only li:not(.starred) { .starred-only .vp-doc li:not(.starred) {
display: none; display: none;
} }
</style> </style>