From 3d61e6c0ef5348056ca09e6cad33a026abdad143 Mon Sep 17 00:00:00 2001 From: "sjin.on.ca@gmail.com" Date: Thu, 11 Jun 2026 17:42:31 +0100 Subject: [PATCH] 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 --- frontend/src/components/project/views/ProjectList.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/project/views/ProjectList.vue b/frontend/src/components/project/views/ProjectList.vue index 603f6404c..afcefc355 100644 --- a/frontend/src/components/project/views/ProjectList.vue +++ b/frontend/src/components/project/views/ProjectList.vue @@ -23,7 +23,7 @@ @click="toggleCollapseAll" :title="collapseAll ? 'Expand all subtasks' : 'Collapse all subtasks'" > - + @@ -406,6 +406,7 @@ onBeforeUnmount(() => { &.is-collapsed { color: var(--primary); border-color: var(--primary); + transform: rotate(-90deg); } }