diff options
author | bobzel <zzzman@gmail.com> | 2025-06-02 17:49:48 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2025-06-02 17:49:48 -0400 |
commit | 8b6f03c191a355a34fa01183ce2b6bd86240ebaf (patch) | |
tree | dcd5acb09929609344aaf4b4ea7f3ad21a0d7dd2 | |
parent | 9e52b7ca60fd9891da6d07c67f89f97ae6f497ee (diff) |
from last
-rw-r--r-- | src/client/views/nodes/DataVizBox/components/TableBox.tsx | 1 | ||||
-rw-r--r-- | src/fields/Doc.ts | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/client/views/nodes/DataVizBox/components/TableBox.tsx b/src/client/views/nodes/DataVizBox/components/TableBox.tsx index 60f1f2d58..9e0868cd5 100644 --- a/src/client/views/nodes/DataVizBox/components/TableBox.tsx +++ b/src/client/views/nodes/DataVizBox/components/TableBox.tsx @@ -111,7 +111,6 @@ export class TableBox extends ObservableReactComponent<TableBoxProps> { @action handleScroll = () => { if (!this._props.docView?.()?.ContentDiv?.hidden) { this._scrollTop = this._containerRef?.scrollTop ?? 0; - console.log('scrollTop', this._scrollTop, this.startID * Number(DATA_VIZ_TABLE_ROW_HEIGHT)); } }; @action diff --git a/src/fields/Doc.ts b/src/fields/Doc.ts index 6e7f95897..6e0c3d112 100644 --- a/src/fields/Doc.ts +++ b/src/fields/Doc.ts @@ -608,9 +608,6 @@ export namespace Doc { const value = (fields as { [key: string]: Opt<FieldType> })[key]; if (!skipUndefineds || value !== undefined) { // Do we want to filter out undefineds? - if (typeof value === 'object' && 'values' in value) { - //console.log(value); - } doc[key] = value; } }); |