chore(ui): remove console.log
This commit is contained in:
parent
8eeeb3f8f8
commit
864347d882
|
@ -31,7 +31,6 @@ whenInteractive(()=>
|
||||||
watchEffect(() => {
|
watchEffect(() => {
|
||||||
if (!model.value.others) return
|
if (!model.value.others) return
|
||||||
const newLabel = selectedLabel.value;
|
const newLabel = selectedLabel.value;
|
||||||
console.log("newLabel", newLabel);
|
|
||||||
selectedLabel.value = '+'
|
selectedLabel.value = '+'
|
||||||
if (!newLabel || newLabel==='+') return;
|
if (!newLabel || newLabel==='+') return;
|
||||||
if (!model.value.current.includes(newLabel) ){
|
if (!model.value.current.includes(newLabel) ){
|
||||||
|
|
|
@ -22,8 +22,6 @@ const heading =
|
||||||
: props.h2 ? ({ h2: props.h2 }) as const
|
: props.h2 ? ({ h2: props.h2 }) as const
|
||||||
: ({ h3: props.h3 }) as const
|
: ({ h3: props.h3 }) as const
|
||||||
|
|
||||||
console.log("HEADING", heading)
|
|
||||||
|
|
||||||
const numberOfColumnsPerItem =
|
const numberOfColumnsPerItem =
|
||||||
'noItems' in props && props.noItems ? 1 : 'tinyItems' in props && props.tinyItems ? 2 : 'smallItems' in props && props['smallItems'] ? 3 : 4
|
'noItems' in props && props.noItems ? 1 : 'tinyItems' in props && props.tinyItems ? 2 : 'smallItems' in props && props['smallItems'] ? 3 : 4
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue