1
0
Fork 0
mirror of synced 2024-10-01 09:38:55 +13:00

fixed missing/broken imports

This commit is contained in:
kevmodrome 2020-04-01 12:55:21 +02:00
parent d29c865ccd
commit 1d4a3c7179
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
<script>
import { tick } from "svelte"
import { tick, onMount } from "svelte"
import { store, backendUiStore } from "builderStore"
import api from "builderStore/api"
import getIcon from "../common/icon"

View file

@ -1,7 +1,7 @@
import { isString, isUndefined } from "lodash/fp"
import { types } from "./types"
import { assign } from "lodash"
import { uuid } from "../src/builderStore/uuid"
import { uuid } from "builderStore/uuid"
export const getBuiltin = name => {
const { props } = createProps({ name })