1
0
Fork 0
mirror of synced 2024-07-05 14:31:17 +12:00

remove unused things

This commit is contained in:
Keviin Åberg Kultalahti 2021-02-26 14:39:44 +01:00
parent 51b517a4be
commit 10972fafe2

View file

@ -12,10 +12,8 @@
const dispatch = createEventDispatcher()
export let bindableProperties
export let value = ""
export let bindingDrawer
export let valid = true
export let bindings = []
let originalValue = value
@ -26,10 +24,7 @@
$: categories = Object.entries(groupBy("category", bindings))
$: value && checkValid()
$: bindableProperties = getBindableProperties(
$currentAsset,
$store.selectedComponentId
)
$: console.log(value)
$: dispatch("update", value)
$: searchRgx = new RegExp(search, "ig")