Showing
3 changed files
with
0 additions
and
3 deletions
| ... | ... | @@ -21,7 +21,6 @@ const validateValueRange = (_rule, value: Record<'min' | 'max', number>, _callba |
| 21 | 21 | }; |
| 22 | 22 | |
| 23 | 23 | const validateJSON = (_rule, value: ModelOfMatterParams[], _callback) => { |
| 24 | - console.log('validate json', value); | |
| 25 | 24 | if (value.length) { |
| 26 | 25 | return Promise.resolve(); |
| 27 | 26 | } | ... | ... |
| ... | ... | @@ -34,7 +34,6 @@ |
| 34 | 34 | let { width = 300, height = 150 } = unref(getOptions); |
| 35 | 35 | width = isNumber(width) ? (`${width}px` as unknown as number) : width; |
| 36 | 36 | height = isNumber(height) ? (`${height}px` as unknown as number) : height; |
| 37 | - console.log({ getOptions }); | |
| 38 | 37 | return { width, height } as CSSProperties; |
| 39 | 38 | }); |
| 40 | 39 | ... | ... |