1
0
Fork 0
mirror of synced 2024-10-05 12:34:50 +13:00

Fix automation component paths

This commit is contained in:
Andrew Kingston 2020-10-26 12:25:26 +00:00
parent 4ff7499d26
commit 2114822c90
3 changed files with 2 additions and 3 deletions

View file

@ -1,6 +1,6 @@
<script>
import { automationStore, backendUiStore } from "builderStore"
import Flowchart from "./flowchart/FlowChart.svelte"
import Flowchart from "./FlowChart/FlowChart.svelte"
import BlockList from "./BlockList.svelte"
$: automation = $automationStore.selectedAutomation?.automation

View file

@ -2,7 +2,7 @@
import { sortBy } from "lodash/fp"
import { automationStore } from "builderStore"
import { DropdownMenu } from "@budibase/bbui"
import { DropdownContainer, DropdownItem } from "../../common/Dropdowns"
import { DropdownContainer, DropdownItem } from "components/common/Dropdowns"
import analytics from "analytics"
$: hasTrigger = $automationStore.selectedAutomation.hasTrigger()

View file

@ -3,7 +3,6 @@
import Arrow from "./Arrow.svelte"
import { flip } from "svelte/animate"
import { fade, fly } from "svelte/transition"
import { automationStore } from "builderStore"
export let automation
export let onSelect