diff options
author | Thomas F. K. Jorna <[email protected]> | 2021-11-27 15:32:30 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2021-11-27 15:32:30 +0100 |
commit | 262cd5a20fe401c230f9a0eb96608f96f6c79fae (patch) | |
tree | aacbaf8e8ae524f3feff185c3637961f63851aa0 /components/Tweaks | |
parent | 9fcc9a8d716254565d06082bc6e861b259c132fd (diff) |
fix: change external black/whitelist names (#165) (#171)
Diffstat (limited to 'components/Tweaks')
-rw-r--r-- | components/Tweaks/TagPanel.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/Tweaks/TagPanel.tsx b/components/Tweaks/TagPanel.tsx index 8d63c6f..58f4b7d 100644 --- a/components/Tweaks/TagPanel.tsx +++ b/components/Tweaks/TagPanel.tsx @@ -17,6 +17,7 @@ export const TagPanel = (props: TagPanelProps) => { }) const currentTags = mode === 'blacklist' ? 'tagsBlacklist' : 'tagsWhitelist' + const name = mode === 'blacklist' ? 'blocklist' : 'allowlist' const [selectedItems, setSelectedItems] = useState<typeof tagArray>( filter[currentTags].map((tag) => { return { value: tag, label: tag } @@ -27,7 +28,7 @@ export const TagPanel = (props: TagPanelProps) => { <CUIAutoComplete labelStyleProps={{ fontWeight: 300, fontSize: 14 }} items={tagArray} - label={'Add tag to ' + mode} + label={`Add tag to ${name}`} placeholder=" " onCreateItem={(item) => null} disableCreateItem={true} |