fix: use chevron-down icon and add rotation for collapsed state

- Replace non-existent chevron-right with chevron-down
- Add rotate(-90deg) transform to collapsed state buttons
- Fixes icon not showing when collapsed
This commit is contained in:
sjin.on.ca@gmail.com 2026-06-11 17:42:31 +01:00
parent c764fbfc55
commit 3d61e6c0ef
1 changed files with 2 additions and 1 deletions

View File

@ -23,7 +23,7 @@
@click="toggleCollapseAll"
:title="collapseAll ? 'Expand all subtasks' : 'Collapse all subtasks'"
>
<Icon :icon="collapseAll ? 'chevron-right' : 'chevron-down'" />
<Icon icon="chevron-down" />
</button>
</div>
</template>
@ -406,6 +406,7 @@ onBeforeUnmount(() => {
&.is-collapsed {
color: var(--primary);
border-color: var(--primary);
transform: rotate(-90deg);
}
}