1
0
Fork 0
mirror of synced 2024-08-10 23:51:24 +12:00

no results case

This commit is contained in:
Peter Clement 2024-01-11 14:26:25 +00:00
parent 30cbcff1b1
commit cc87213071

View file

@ -30,6 +30,8 @@
return lowerA > lowerB ? 1 : -1 return lowerA > lowerB ? 1 : -1
}) })
$: showNoResults = searchString && !filteredAutomations.length
onMount(async () => { onMount(async () => {
try { try {
await automationStore.actions.fetch() await automationStore.actions.fetch()
@ -53,7 +55,6 @@
/> />
</div> </div>
<div class="side-bar-nav"> <div class="side-bar-nav">
{#if filteredAutomations.length}
{#each filteredAutomations as automation} {#each filteredAutomations as automation}
<NavItem <NavItem
text={automation.name} text={automation.name}
@ -64,7 +65,8 @@
<EditAutomationPopover {automation} /> <EditAutomationPopover {automation} />
</NavItem> </NavItem>
{/each} {/each}
{:else}
{#if showNoResults}
<Layout paddingY="none" paddingX="L"> <Layout paddingY="none" paddingX="L">
<div class="no-results"> <div class="no-results">
There aren't any automations matching that name There aren't any automations matching that name