Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Suppress role selection if no roles available #6802

Merged
merged 2 commits into from
Jul 14, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/plugins/userIndicator/components/UserIndicator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@
name: role
}));
// automatically select only role option
if (selectionOptions.length === 0){
return;

Check warning on line 85 in src/plugins/userIndicator/components/UserIndicator.vue

View check run for this annotation

Codecov / codecov/patch

src/plugins/userIndicator/components/UserIndicator.vue#L85

Added line #L85 was not covered by tests
}
if (selectionOptions.length === 1) {
this.updateRole(selectionOptions[0].key);
return;
Expand Down