1
0
Fork 0
mirror of synced 2024-06-30 12:00:31 +12:00
This commit is contained in:
Keviin Åberg Kultalahti 2021-03-15 15:27:29 +01:00
parent 2bafdfb6c2
commit c04a848853

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>