Skip to content
This repository has been archived by the owner on Apr 25, 2024. It is now read-only.

Commit

Permalink
Fix spelling in translation key
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Armbrust <[email protected]>
  • Loading branch information
sebxian committed Jan 10, 2024
1 parent 8916067 commit 3ba8e12
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion public/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -1236,7 +1236,7 @@
"namespaceSelector": {
"placeholder": "Select Namespace",
"loading": "loading...",
"optionDoesNotExists": "{{namespace}} (does not exist)"
"optionDoesNotExist": "{{namespace}} (does not exist)"
},
"filepicker": {
"buttonText": "Browse Files",
Expand Down
2 changes: 1 addition & 1 deletion src/componentsNext/NamespaceSelector/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const NamespaceSelector: FC<ButtonProps> = ({
{defaultDoesNotExist && (
<SelectItem value={defaultValue}>
<span>
{t("components.namespaceSelector.optionDoesNotExists", {
{t("components.namespaceSelector.optionDoesNotExist", {
namespace: defaultValue,
})}
</span>
Expand Down

0 comments on commit 3ba8e12

Please sign in to comment.