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:05:32 -0400
committerNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-03-21 00:05:32 -0400
commita598877cc71c1f2a25e8cac4b831ab947a2539e0 (patch)
tree65c83dda18eb587c5e0dc0ac665cd7799f21499a /src/client/views/nodes/formattedText/DashFieldView.tsx
parent8cc8c972c73ea52e6be3d6dc25d9abc6905327df (diff)
editing all selected cols 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 b0c35b161..631de1241 100644
--- a/src/client/views/nodes/formattedText/DashFieldView.tsx
+++ b/src/client/views/nodes/formattedText/DashFieldView.tsx
@@ -140,13 +140,14 @@ 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!], 0]}
fieldKey={this._fieldKey}
rowHeight={returnZero}
isRowActive={() => this._expanded && this._props.editable}
padding={0}
getFinfo={emptyFunction}
setColumnValues={returnFalse}
+ setSelectedColumnValues={returnFalse}
allowCRs={true}
oneLine={!this._expanded}
finishEdit={action(() => (this._expanded = false))}