Skip to content

Commit

Permalink
fix multiple word filtering
Browse files Browse the repository at this point in the history
Signed-off-by: R-Lawton <[email protected]>
  • Loading branch information
R-Lawton committed Nov 18, 2024
1 parent 487a888 commit b486f2e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions locales/en/plugin__kuadrant-console-plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@
"Reference to an existing secret resource containing DNS provider credentials and configuration": "Reference to an existing secret resource containing DNS provider credentials and configuration",
"Release Notes": "Release Notes",
"Save": "Save",
"Search across name, namespace and/or resource type": "Search across name, namespace and/or resource type",
"Select a gateway": "Select a gateway",
"Select a Protocol": "Select a Protocol",
"Select an ClusterIssuer": "Select an ClusterIssuer",
Expand Down
2 changes: 1 addition & 1 deletion src/components/ResourceList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ const ResourceList: React.FC<ResourceListProps> = ({
<ListPageBody>
<div className="kuadrant-filter-bar" style={{ marginBottom: '16px', marginTop: '15px' }}>
<SearchInput
placeholder="Search across name, namespace or resource type"
placeholder={t("Search across name, namespace and/or resource type")}
value={String(filters) || ''}
onChange={(_, value: string) => handleFilterChange(value)}
onClear={handleClear}
Expand Down

0 comments on commit b486f2e

Please sign in to comment.