aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/DataVizBox/DataVizBox.tsx
diff options
context:
space:
mode:
authorsrichman333 <sarah_n_richman@brown.edu>2023-12-27 02:30:33 -0500
committersrichman333 <sarah_n_richman@brown.edu>2023-12-27 02:30:33 -0500
commit7ff12fb05b7fdb067052c19e5a09cd4c21961556 (patch)
treeb2e83c22a66b46c2fd16a5c82df7ba6b33d3d70c /src/client/views/nodes/DataVizBox/DataVizBox.tsx
parent9b7576d287f8659a45cb408056c21e66f361b034 (diff)
dragging tables column fix
Diffstat (limited to 'src/client/views/nodes/DataVizBox/DataVizBox.tsx')
-rw-r--r--src/client/views/nodes/DataVizBox/DataVizBox.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DataVizBox/DataVizBox.tsx b/src/client/views/nodes/DataVizBox/DataVizBox.tsx
index 56c130e0f..e8e46edbc 100644
--- a/src/client/views/nodes/DataVizBox/DataVizBox.tsx
+++ b/src/client/views/nodes/DataVizBox/DataVizBox.tsx
@@ -331,7 +331,7 @@ export class DataVizBox extends ViewBoxAnnotatableComponent<FieldViewProps>() {
if (!keys) return;
const children = DocListCast(getFrom[Doc.LayoutFieldKey(getFrom)]);
var current: {[key: string]: string}[] = []
- for (let i=1; i<children.length; i++){
+ for (let i=0; i<children.length; i++){
var row: {[key:string]: string} = {};
if (children[i]){
for (let j=0; j<keys.length; j++){