diff options
author | bobzel <zzzman@gmail.com> | 2024-08-27 13:54:39 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-08-27 13:54:39 -0400 |
commit | b8a04a0fedf8ef3612395764a0ecd01f6824ebd1 (patch) | |
tree | da3b27141db87fea8314798303ea2722b0b686b0 | |
parent | cf10fbb80a022ddb141e41203b9135b6f1ed9527 (diff) |
from last
-rw-r--r-- | src/client/views/TagsView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/TagsView.tsx b/src/client/views/TagsView.tsx index da1add55b..d2ca77446 100644 --- a/src/client/views/TagsView.tsx +++ b/src/client/views/TagsView.tsx @@ -309,7 +309,7 @@ export class TagsView extends ObservableReactComponent<TagViewProps> { }}> <div className="tagsView-content" style={{ width: '100%' }}> <div className="tagsView-list"> - {!tagsList.size ? null : ( // + {!tagsList.size && !facesList.size ? null : ( // <IconButton style={{ width: '8px' }} tooltip="Close Menu" onPointerDown={() => this.setToEditing(!this._isEditing)} icon={<FontAwesomeIcon icon={this._isEditing ? 'chevron-up' : 'chevron-down'} size="sm" />} /> )} {Array.from(tagsList).map((tag, i) => ( |