diff options
author | Luke Bennett <lbennett@gitlab.com> | 2018-06-28 13:24:54 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2018-06-28 13:24:54 +0000 |
commit | fae42270c4cb4ac4c9b637dac00a585988e3151e (patch) | |
tree | c4dc155ee35de282e0806c0b87c8b585f8a47119 /app/views/shared | |
parent | e28896ce0d812105291eccd140f29d0d94919f9c (diff) | |
download | gitlab-ce-fae42270c4cb4ac4c9b637dac00a585988e3151e.tar.gz |
Resolve "No UI element to edit group label"
Diffstat (limited to 'app/views/shared')
-rw-r--r-- | app/views/shared/_label.html.haml | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/app/views/shared/_label.html.haml b/app/views/shared/_label.html.haml index 5eec7b02b54..e93925b5ef9 100644 --- a/app/views/shared/_label.html.haml +++ b/app/views/shared/_label.html.haml @@ -21,8 +21,9 @@ = sprite_icon('star-o') %button.label-action.remove-priority.btn.btn-transparent.has-tooltip{ title: _('Remove priority'), type: 'button', data: { placement: 'top' }, aria_label: _('Deprioritize label') } = sprite_icon('star') + - if can?(current_user, :admin_label, label) %li.inline - = link_to edit_label_path(label), class: 'btn btn-transparent label-action', aria_label: 'Edit label' do + = link_to edit_label_path(label), class: 'btn btn-transparent label-action edit', aria_label: 'Edit label' do = sprite_icon('pencil') %li.inline .dropdown @@ -42,9 +43,10 @@ container: 'body', toggle: 'modal' } } = _('Promote to group label') - %li - %span{ data: { toggle: 'modal', target: "#modal-delete-label-#{label.id}" } } - %button.text-danger.remove-row{ type: 'button' }= _('Delete') + - if can?(current_user, :admin_label, label) + %li + %span{ data: { toggle: 'modal', target: "#modal-delete-label-#{label.id}" } } + %button.text-danger.remove-row{ type: 'button' }= _('Delete') - if current_user %li.inline.label-subscription - if can_subscribe_to_label_in_different_levels?(label) |