Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion packages/tree-view-table-layout/src/components/table-row.vue
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,9 @@ function usePreventClickAfterDragging({ mouseDownHandler, clickHandler }) {

&.children-collapsed {
--v-icon-color: var(--theme--foreground);
transform: rotate(90deg);
/* expand_more points down; collapsed must point RIGHT (the universal "expand me"),
so rotate -90deg (CCW). +90 would point it left, which reads backwards. */
transform: rotate(-90deg);
}
}

Expand Down