diff options
author | Drew Blessing <drew@blessing.io> | 2019-07-25 10:51:48 -0500 |
---|---|---|
committer | Drew Blessing <drew@blessing.io> | 2019-08-05 18:00:57 -0500 |
commit | 81f44275bd3882d2153357c1839561e5a6a53348 (patch) | |
tree | 79b7602d735737c1ecea3023f362d0b519bf2459 /app/views/admin | |
parent | 029381b1d9219ad6fd5ed68f2f93e418f1dd55ca (diff) | |
download | gitlab-ce-81f44275bd3882d2153357c1839561e5a6a53348.tar.gz |
Fix Admin area user access level radio button labels
In the admin user edit form, access level radio button labels didn't have
the correct 'for' value. Clicking on the label did not select the radio
button. This makes usability a bit nicer since the click area is increased
when the label is clickable.
Diffstat (limited to 'app/views/admin')
-rw-r--r-- | app/views/admin/users/_access_levels.html.haml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/admin/users/_access_levels.html.haml b/app/views/admin/users/_access_levels.html.haml index 77729636f9d..bb1e22cc610 100644 --- a/app/views/admin/users/_access_levels.html.haml +++ b/app/views/admin/users/_access_levels.html.haml @@ -19,7 +19,7 @@ - editing_current_user = (current_user == @user) = f.radio_button :access_level, :regular, disabled: editing_current_user - = label_tag :regular, class: 'font-weight-bold' do + = f.label :access_level_regular, class: 'font-weight-bold' do Regular %p.light Regular users have access to their groups and projects @@ -27,7 +27,7 @@ = render_if_exists 'admin/users/auditor_access_level_radio', f: f, disabled: editing_current_user = f.radio_button :access_level, :admin, disabled: editing_current_user - = label_tag :admin, class: 'font-weight-bold' do + = f.label :access_level_admin, class: 'font-weight-bold' do Admin %p.light Administrators have access to all groups, projects and users and can manage all features in this installation |