Skip to content

Commit 85cabcb

Browse files
committed
fix: show search only when there are more than 5 queues
1 parent 404e4ea commit 85cabcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/ui/src/components/Menu/Menu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const Menu = () => {
2121
return (
2222
<aside className={s.aside}>
2323
<div className={s.secondary}>{t('MENU.QUEUES')}</div>
24-
{(queues?.length || 0) > 0 && (
24+
{(queues?.length || 0) > 5 && (
2525
<div className={s.searchWrapper}>
2626
<SearchIcon />
2727
<input

0 commit comments

Comments
 (0)