1
0
Fork 0
mirror of synced 2024-09-20 19:33:10 +12:00

Remove logs

This commit is contained in:
Andrew Kingston 2024-07-31 10:36:39 +01:00
parent cb3c667859
commit fd57f2ffcc
No known key found for this signature in database
2 changed files with 0 additions and 2 deletions

View file

@ -178,7 +178,6 @@
colStart: minMax(getCurrent(vars.colStart), 1, gridCols), colStart: minMax(getCurrent(vars.colStart), 1, gridCols),
colEnd: minMax(getCurrent(vars.colEnd), 2, gridCols + 1), colEnd: minMax(getCurrent(vars.colEnd), 2, gridCols + 1),
} }
console.log(dragInfo.grid)
handleEvent(e) handleEvent(e)
} }
} }

View file

@ -9,7 +9,6 @@
export let title export let title
$: currentValue = getGridVarValue($componentStore.selectedComponent, style) $: currentValue = getGridVarValue($componentStore.selectedComponent, style)
$: console.log(style, currentValue)
$: active = currentValue === value $: active = currentValue === value
</script> </script>