aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/ImageBox.tsx
diff options
context:
space:
mode:
authorIEatChili <nanunguyen99@gmail.com>2024-06-26 13:58:20 -0400
committerIEatChili <nanunguyen99@gmail.com>2024-06-26 13:58:20 -0400
commit3190f1eb07a47a5e1ccdd20e346b47094118292d (patch)
tree7b8dab1763720ee71bc89e888b0296fdd31054b5 /src/client/views/nodes/ImageBox.tsx
parent376ff1626b24cbac12b27ad072690424549f05c7 (diff)
feat: worked more on keyword input for docs
Diffstat (limited to 'src/client/views/nodes/ImageBox.tsx')
-rw-r--r--src/client/views/nodes/ImageBox.tsx7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/client/views/nodes/ImageBox.tsx b/src/client/views/nodes/ImageBox.tsx
index fb90f907f..1c90fae9e 100644
--- a/src/client/views/nodes/ImageBox.tsx
+++ b/src/client/views/nodes/ImageBox.tsx
@@ -283,13 +283,6 @@ export class ImageBox extends ViewBoxAnnotatableComponent<FieldViewProps>() {
}),
icon: 'pencil-alt',
});
- funcs.push({
- description: 'Toggle Keywords',
- event: () => {
- this.Document[DocData].showLabels = !this.Document[DocData].showLabels;
- },
- icon: 'eye',
- });
ContextMenu.Instance?.addItem({ description: 'Options...', subitems: funcs, icon: 'asterisk' });
}
};