1
0
Fork 0
mirror of synced 2024-10-02 01:56:57 +13:00

remove unneeded things

This commit is contained in:
Keviin Åberg Kultalahti 2021-03-01 14:04:07 +01:00
parent a7b9945010
commit e9604ba967
2 changed files with 1 additions and 9 deletions

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,16 +24,11 @@
$: categories = Object.entries(groupBy("category", bindings))
$: value && checkValid()
$: bindableProperties = getBindableProperties(
$currentAsset,
$store.selectedComponentId
)
$: dispatch("update", value)
$: searchRgx = new RegExp(search, "ig")
function checkValid() {
const runtimeValue = readableToRuntimeBinding(bindings, value)
validity = isValid(runtimeValue)
validity = isValid(value)
}
function addToText(binding) {

View file

@ -55,7 +55,6 @@
value={readableValue}
close={handleClose}
on:update={event => (tempValue = event.detail)}
bindableProperties={bindings}
{bindings} />
</div>
</Drawer>