fix(theme): fixed sidebar expand caret showing when no children are present (#3657)

pull/3679/head
Andrew Courtice 2 years ago committed by GitHub
parent b50a8a1325
commit e13f93292c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -82,7 +82,7 @@ function onCaretClick() {
<component v-else :is="textTag" class="text" v-html="item.text" /> <component v-else :is="textTag" class="text" v-html="item.text" />
<div <div
v-if="item.collapsed != null" v-if="item.collapsed != null && item.items && item.items.length"
class="caret" class="caret"
role="button" role="button"
aria-label="toggle section" aria-label="toggle section"

Loading…
Cancel
Save