summaryrefslogtreecommitdiff
path: root/components/TagMenu.tsx
diff options
context:
space:
mode:
authorThomas F. K. Jorna <[email protected]>2021-11-27 15:32:30 +0100
committerGitHub <[email protected]>2021-11-27 15:32:30 +0100
commit262cd5a20fe401c230f9a0eb96608f96f6c79fae (patch)
treeaacbaf8e8ae524f3feff185c3637961f63851aa0 /components/TagMenu.tsx
parent9fcc9a8d716254565d06082bc6e861b259c132fd (diff)
fix: change external black/whitelist names (#165) (#171)
Diffstat (limited to 'components/TagMenu.tsx')
-rw-r--r--components/TagMenu.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/TagMenu.tsx b/components/TagMenu.tsx
index 2a72e67..4841cbf 100644
--- a/components/TagMenu.tsx
+++ b/components/TagMenu.tsx
@@ -111,7 +111,7 @@ export const TagMenu = (props: TagMenuProps) => {
}}
icon={blacklist ? <MinusIcon /> : <ViewOffIcon />}
>
- {blacklist ? 'Remove from blacklist' : 'Add to blacklist'}
+ {blacklist ? 'Remove from blocklist' : 'Add to blocklist'}
</MenuItem>
)}
{!blacklist && (
@@ -131,7 +131,7 @@ export const TagMenu = (props: TagMenuProps) => {
}}
icon={whitelist ? <MinusIcon /> : <ViewIcon />}
>
- {whitelist ? 'Remove from whitelist' : 'Add to whitelist'}
+ {whitelist ? 'Remove from allowlist' : 'Add to allowlist'}
</MenuItem>
)}
</>