1
0
Fork 0
mirror of synced 2024-09-30 09:07:25 +13:00
This commit is contained in:
Keviin Åberg Kultalahti 2021-03-15 15:27:29 +01:00
parent 230f871e83
commit 859653c62b

View file

@ -3,8 +3,6 @@
import { onMount } from 'svelte'
import { automationStore } from "builderStore"
$: automationCount = $automationStore.automations?.length ?? 0
onMount(async () => {
// navigate to first automation in list, if not already selected
if (
@ -17,8 +15,12 @@
})
</script>
<i>Create your first automation to get started</i>
{#if automationCount === 0}
<i>Create your first automation to get started</i>
{:else}<i>Select an automation to edit</i>{/if}
<style>
i {
font-size: var(--font-size-m);
color: var(--grey-5);
margin-top: 2px;
}
</style>