diff options
author | srichman333 <sarah_n_richman@brown.edu> | 2023-12-27 02:30:33 -0500 |
---|---|---|
committer | srichman333 <sarah_n_richman@brown.edu> | 2023-12-27 02:30:33 -0500 |
commit | 7ff12fb05b7fdb067052c19e5a09cd4c21961556 (patch) | |
tree | b2e83c22a66b46c2fd16a5c82df7ba6b33d3d70c /src/client/views/nodes/DataVizBox/components/TableBox.tsx | |
parent | 9b7576d287f8659a45cb408056c21e66f361b034 (diff) |
dragging tables column fix
Diffstat (limited to 'src/client/views/nodes/DataVizBox/components/TableBox.tsx')
-rw-r--r-- | src/client/views/nodes/DataVizBox/components/TableBox.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DataVizBox/components/TableBox.tsx b/src/client/views/nodes/DataVizBox/components/TableBox.tsx index 16e66d0c3..4f60a156b 100644 --- a/src/client/views/nodes/DataVizBox/components/TableBox.tsx +++ b/src/client/views/nodes/DataVizBox/components/TableBox.tsx @@ -226,7 +226,7 @@ export class TableBox extends ObservableReactComponent<TableBoxProps> { </thead> <tbody> {this._tableDataIds - .filter((rowId, i) => this.startID <= i && i <= this.endID) + .filter((rowId, i) => this.startID-2 <= i && i <= this.endID+2) ?.map(rowId => ( <tr key={rowId} |