feat(division): fixing logic treeview

This commit is contained in:
riefive
2025-10-04 09:05:28 +07:00
parent 71e0615ee1
commit a7cbbeeda9
6 changed files with 32 additions and 8 deletions
+2 -2
View File
@@ -24,7 +24,7 @@ function handleSelect(value: string) {
:class="{ 'pl-8': shouldAlign }"
@select="() => handleSelect(item.value)"
>
<span class="text-sm font-normal">{{ item.label }}</span>
<span class="text-sm font-normal text-gray-400">{{ item.label }}</span>
<Check
v-if="selectedValue === item.value"
class="w-4 h-4 text-primary ml-2 flex-shrink-0"
@@ -35,6 +35,6 @@ function handleSelect(value: string) {
<style scoped>
.leaf-node {
@apply w-full;
width: 100%;
}
</style>