Skip to content

Commit

Permalink
fix(applet): incorrect rendering on overflowed TreeViewer (#348)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexzhang1030 committed Apr 24, 2024
1 parent 0711ea2 commit 3bf3812
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/applet/src/components/tree/TreeViewer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ function select(id: string) {
<div
v-for="(item, index) in data"
:key="index"
:class="{
'min-w-max': depth === 0,
}"
>
<div
class="group flex cursor-pointer items-center rounded-1 hover:(bg-primary-300 dark:bg-gray-600)"
Expand Down

0 comments on commit 3bf3812

Please sign in to comment.