fixed missing/broken imports
This commit is contained in:
parent
9c99f416a7
commit
be0eedf941
|
@ -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"
|
||||
|
|
|
@ -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 })
|
||||
|
|
Loading…
Reference in New Issue