aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionSchema/SchemaRowBox.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2024-05-07 14:55:54 -0400
committerbobzel <zzzman@gmail.com>2024-05-07 14:55:54 -0400
commitb8907e69160d97d919fcd83eb86d60e3634205ca (patch)
tree654f82036f5304403ab025e7ff02ced8069a05be /src/client/views/collections/collectionSchema/SchemaRowBox.tsx
parent23d4470b3f6a0bd862f3f5f9c775be039d479d81 (diff)
lint cleanup for schemaview
Diffstat (limited to 'src/client/views/collections/collectionSchema/SchemaRowBox.tsx')
-rw-r--r--src/client/views/collections/collectionSchema/SchemaRowBox.tsx11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/client/views/collections/collectionSchema/SchemaRowBox.tsx b/src/client/views/collections/collectionSchema/SchemaRowBox.tsx
index 059aa912e..760089ffb 100644
--- a/src/client/views/collections/collectionSchema/SchemaRowBox.tsx
+++ b/src/client/views/collections/collectionSchema/SchemaRowBox.tsx
@@ -41,7 +41,7 @@ export class SchemaRowBox extends ViewBoxBaseComponent<SchemaRowBoxProps>() {
}
@computed get schemaDoc() {
- return this.DocumentView?.().containerViewPath?.().lastElement()?.Document;
+ return this.schemaView.Document;
}
@computed get rowIndex() {
@@ -104,12 +104,13 @@ export class SchemaRowBox extends ViewBoxBaseComponent<SchemaRowBoxProps>() {
e,
returnFalse,
emptyFunction,
- undoable(e => {
- e.stopPropagation();
+ undoable(clickEv => {
+ clickEv.stopPropagation();
Doc.toggleLockedPosition(this.Document);
- }, 'Delete Row') //(??) should this be something else?
+ }, 'toggle document lock')
)
- }></IconButton>
+ }
+ />
<IconButton
tooltip="open preview"
icon={<FaExternalLinkAlt />}