aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/formattedText/DashFieldView.tsx
diff options
context:
space:
mode:
authorNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-03-21 00:43:08 -0400
committerNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-03-21 00:43:08 -0400
commit9ccbc0a6d6f6fffbc479d37ac2a880eafe85c65d (patch)
tree9eb60db4c05a7a79bf12a4bb31920b15f7689eac /src/client/views/nodes/formattedText/DashFieldView.tsx
parenta598877cc71c1f2a25e8cac4b831ab947a2539e0 (diff)
multiple cell column switching working
Diffstat (limited to 'src/client/views/nodes/formattedText/DashFieldView.tsx')
-rw-r--r--src/client/views/nodes/formattedText/DashFieldView.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/nodes/formattedText/DashFieldView.tsx b/src/client/views/nodes/formattedText/DashFieldView.tsx
index 631de1241..66db06d69 100644
--- a/src/client/views/nodes/formattedText/DashFieldView.tsx
+++ b/src/client/views/nodes/formattedText/DashFieldView.tsx
@@ -140,7 +140,8 @@ export class DashFieldViewInternal extends ObservableReactComponent<IDashFieldVi
selectCell={emptyFunction}
maxWidth={this._props.hideKey ? undefined : this.return100}
columnWidth={this._props.hideKey ? () => this._props.tbox._props.PanelWidth() - 20 : returnZero}
- selectedCells={() => [[this._dashDoc!], 0]}
+ selectedCells={() => [this._dashDoc!]}
+ selectedCol={() => 0} //!!!
fieldKey={this._fieldKey}
rowHeight={returnZero}
isRowActive={() => this._expanded && this._props.editable}