aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionSchema/SchemaColumnHeader.tsx
diff options
context:
space:
mode:
authorNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-06-05 01:42:26 -0400
committerNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-06-05 01:42:26 -0400
commit641cd55d41460cf24f07959c8f94e2723c18ddeb (patch)
tree93b2afc485031ea3522db732493b8d0cdcce2afa /src/client/views/collections/collectionSchema/SchemaColumnHeader.tsx
parent22343f6ceb3175ff1794c4ff0ecda0471a7594af (diff)
adding collection content to schema started
Diffstat (limited to 'src/client/views/collections/collectionSchema/SchemaColumnHeader.tsx')
-rw-r--r--src/client/views/collections/collectionSchema/SchemaColumnHeader.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionSchema/SchemaColumnHeader.tsx b/src/client/views/collections/collectionSchema/SchemaColumnHeader.tsx
index 32abc1780..03cf64fc8 100644
--- a/src/client/views/collections/collectionSchema/SchemaColumnHeader.tsx
+++ b/src/client/views/collections/collectionSchema/SchemaColumnHeader.tsx
@@ -147,7 +147,7 @@ export class SchemaColumnHeader extends ObservableReactComponent<SchemaColumnHea
else return this.fieldKey;
}}
SetValue={undoable((value: string, shiftKey?: boolean, enterKey?: boolean) => {
- if (shiftKey && enterKey) { // if shift & enter, set value of each cell in column
+ if (enterKey) { // if shift & enter, set value of each cell in column
this.setColumnValues(value, '');
this._altTitle = undefined;
this._props.finishEdit?.();