Skip to content

Commit

Permalink
add kind filtering back in
Browse files Browse the repository at this point in the history
  • Loading branch information
joshri committed Sep 14, 2022
1 parent 709251e commit 29c69dd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ui/components/AlertsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export const makeEventSourceLink = (obj: CrossNamespaceObjectRef) => {
if (obj.name !== "*") filters += `name${filterSeparator}${obj.name}_`;
if (obj.namespace !== "*")
filters += `namespace${filterSeparator}${obj.namespace}_`;
filters += `type${filterSeparator}${obj.kind}_`;
if (filters) return url + `?${qs.stringify({ filters: filters })}`;
return url;
};
Expand Down

0 comments on commit 29c69dd

Please sign in to comment.