Skip to content

Commit

Permalink
feat(dashboard): correct virtual scroll
Browse files Browse the repository at this point in the history
  • Loading branch information
Satont committed Nov 5, 2024
1 parent 1376116 commit cefb24e
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,9 +111,9 @@ const { list: virtualizedList, containerProps, wrapperProps } = useVirtualList(o
No user found
</CommandEmpty>
<CommandList>
<div v-bind="containerProps" class="min-h-72 max-h-72">
<div v-bind="wrapperProps">
<CommandGroup :heading="t(`dashboard.header.channelsAccess`)">
<CommandGroup :heading="t(`dashboard.header.channelsAccess`)">
<div v-bind="containerProps" class="max-h-72">
<div v-bind="wrapperProps">
<CommandItem
v-for="option in virtualizedList"
:key="option.index"
Expand Down Expand Up @@ -143,9 +143,9 @@ const { list: virtualizedList, containerProps, wrapperProps } = useVirtualList(o
)"
/>
</CommandItem>
</CommandGroup>
</div>
</div>
</div>
</CommandGroup>
</CommandList>
</Command>
</PopoverContent>
Expand Down

0 comments on commit cefb24e

Please sign in to comment.