Skip to content

Commit

Permalink
fix: Security Server add client service access rights filter clearing…
Browse files Browse the repository at this point in the history
… fix

Refs: XRDDEV-2462
  • Loading branch information
enelir committed Aug 30, 2023
1 parent 8181dc8 commit 0293353
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,15 @@ export default Vue.extend({
},
search(): void {
this.noResults = false;
if (this.name == null) {
this.name = '';
}
if (this.memberCode == null) {
this.memberCode = '';
}
if (this.subsystemCode == null) {
this.subsystemCode = '';
}
let query = `/clients/${this.clientId}/service-client-candidates?member_name_group_description=${this.name}&member_group_code=${this.memberCode}&subsystem_code=${this.subsystemCode}`;

// These checks are needed because instance, subject type and member class (dropdowns) return undefined if they are first selected and then cleared
Expand Down

0 comments on commit 0293353

Please sign in to comment.