Skip to content

Commit

Permalink
Fix layout in roles dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
lukfor committed Oct 21, 2024
1 parent d18f8a3 commit 8b4afc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/html/webapp/components/admin/user/list/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export default Control.extend({
//options = options + '<option>' + group.attr('name') + '</option>';
options = options + '<label class="checkbox"><input type="checkbox" name="role-select" value="' + group.attr('name') + '" />';
}
options = options + ' <b>' + group.attr('name') + '</b><br><small class="text-muted">Access to: ' + group.attr('apps').join(', ') + '</small></label>';
options = options + ' <b>' + group.attr('name') + '</b><br><small class="text-muted">Access to: ' + group.attr('apps').join(', ') + '</small></label><br>';
});

bootbox.confirm(
Expand Down

0 comments on commit 8b4afc5

Please sign in to comment.