Skip to content

Commit

Permalink
Merge pull request #11392 from openshift-cherrypick-robot/cherry-pick…
Browse files Browse the repository at this point in the history
…-10846-to-release-4.9

[release-4.9] Bug 2078554: - Roles -> RoleBindings tab doesn't show RoleBindings correctly
  • Loading branch information
openshift-merge-robot committed Apr 27, 2022
2 parents ff68590 + bb1293d commit 83c1f29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/public/components/factory/table-filters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ export const tableFilters: FilterMap = {
},

// Filter role bindings by roleRef name
'role-binding-roleRef-name': (name, binding) => binding.roleRef.name === name.selected?.[0],
'role-binding-roleRef-name': (name, binding) => binding.roleRef.name === name,

// Filter role bindings by roleRef kind
'role-binding-roleRef-kind': (kind, binding) => binding.roleRef.kind === kind.selected?.[0],
'role-binding-roleRef-kind': (kind, binding) => binding.roleRef.kind === kind,

// Filter role bindings by user name
'role-binding-user': (userName, { subject }) => subject.name === userName,
Expand Down

0 comments on commit 83c1f29

Please sign in to comment.