cmdk: hide empty groups

This commit is contained in:
Nikita Galaiko 2023-04-24 14:01:05 +02:00
parent 39252bd455
commit dd4e7fa109

View File

@ -167,7 +167,10 @@
<ul class="command-pallete-content-container flex-auto overflow-y-auto pb-2"> <ul class="command-pallete-content-container flex-auto overflow-y-auto pb-2">
{#each $commandGroups as group, groupIdx} {#each $commandGroups as group, groupIdx}
{#await group then group} {#await group then group}
<li class="w-full cursor-default select-none px-2"> <li
class="w-full cursor-default select-none px-2"
class:hidden={group.commands.length === 0}
>
<header class="command-palette-section-header result-section-header"> <header class="command-palette-section-header result-section-header">
<span>{group.title}</span> <span>{group.title}</span>
{#if group.description} {#if group.description}