aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionSchema/SchemaTableCell.tsx
diff options
context:
space:
mode:
authorNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-06-22 15:47:12 -0400
committerNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-06-22 15:47:12 -0400
commit7f9d92b3e1d0ca433c732936eae767095c9a5e7f (patch)
tree408bc892e627d9ab6a8257132e6cb1603d7c8921 /src/client/views/collections/collectionSchema/SchemaTableCell.tsx
parent24fad06cbd2e273bb6729f21956e35243e602bb7 (diff)
work on cell field (numerous bugs fixed: spaces now make new divs, invalid refs no longer break things, valid->invalid ref causes update properly)
Diffstat (limited to 'src/client/views/collections/collectionSchema/SchemaTableCell.tsx')
-rw-r--r--src/client/views/collections/collectionSchema/SchemaTableCell.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/collections/collectionSchema/SchemaTableCell.tsx b/src/client/views/collections/collectionSchema/SchemaTableCell.tsx
index 94fd9ec7d..ab384a487 100644
--- a/src/client/views/collections/collectionSchema/SchemaTableCell.tsx
+++ b/src/client/views/collections/collectionSchema/SchemaTableCell.tsx
@@ -63,7 +63,7 @@ export interface SchemaTableCellProps {
isolatedSelection: [boolean, boolean];
highlightCells: (text: string) => void;
equationHighlightRef: ObservableMap<HTMLDivElement, string>;
- func: (text: string, raw: boolean) => HTMLDivElement[] | [];
+ func: (text: string) => HTMLDivElement[] | [];
}
@@ -184,7 +184,7 @@ export class SchemaTableCell extends ObservableReactComponent<SchemaTableCellPro
<SchemaCellField
Document={this._props.Document}
highlightCells={this.adjustedHighlight}
- func={this._props.func}
+ getCells={this._props.func}
ref={r => selectedCell(this._props) && this._props.autoFocus && r?.setIsFocused(true)}
oneLine={this._props.oneLine}
contents={undefined}