diff options
| author | bobzel <zzzman@gmail.com> | 2024-09-19 20:38:35 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-09-19 20:38:35 -0400 |
| commit | 06d460562004a29060d9972857d5c76e4ee51461 (patch) | |
| tree | fe4b8ee0b3c46f2c737d4b3a60a40fa972f39f72 /src/client/views/collections/collectionFreeForm/ImageLabelBox.tsx | |
| parent | 34e2b4d4c098e08d6cfe7d48c3a4b27fcda091b3 (diff) | |
| parent | cf7216aec2fd61bc7de43240586532b5d54e7d8b (diff) | |
merged with master
Diffstat (limited to 'src/client/views/collections/collectionFreeForm/ImageLabelBox.tsx')
| -rw-r--r-- | src/client/views/collections/collectionFreeForm/ImageLabelBox.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/collections/collectionFreeForm/ImageLabelBox.tsx b/src/client/views/collections/collectionFreeForm/ImageLabelBox.tsx index e419e522c..033d1590d 100644 --- a/src/client/views/collections/collectionFreeForm/ImageLabelBox.tsx +++ b/src/client/views/collections/collectionFreeForm/ImageLabelBox.tsx @@ -139,9 +139,9 @@ export class ImageLabelBox extends ViewBoxBaseComponent<FieldViewProps>() { toggleDisplayInformation = () => { this._displayImageInformation = !this._displayImageInformation; if (this._displayImageInformation) { - this._selectedImages.forEach(doc => (doc[DocData].showTags = true)); + this._selectedImages.forEach(doc => (doc._layout_showTags = true)); } else { - this._selectedImages.forEach(doc => (doc[DocData].showTags = false)); + this._selectedImages.forEach(doc => (doc._layout_showTags = false)); } }; |
