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