diff options
author | Phil Hughes <me@iamphill.com> | 2016-04-14 09:13:32 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2016-04-14 09:13:32 +0100 |
commit | f5e8667fc5fd7f650704e9507edad48c7fbdef79 (patch) | |
tree | 1f1095d002dfd90b1e510427611ecc90716b9d03 | |
parent | beaee0a71fbb1b08676107b3e619e833dc8902c0 (diff) | |
download | gitlab-ce-f5e8667fc5fd7f650704e9507edad48c7fbdef79.tar.gz |
Fixed haml style issues
-rw-r--r-- | app/views/projects/labels/_label.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/projects/labels/_label.html.haml b/app/views/projects/labels/_label.html.haml index c7b4bb1f6e6..8bf544b8371 100644 --- a/app/views/projects/labels/_label.html.haml +++ b/app/views/projects/labels/_label.html.haml @@ -14,7 +14,7 @@ .label-subscription{data: {url: toggle_subscription_namespace_project_label_path(@project.namespace, @project, label)}} .subscription-status{data: {status: label_subscription_status(label)}} - %button.js-subscribe-button.label-subscribe-button.btn.action-buttons{ type: 'button', data: {toggle: "tooltip"} } + %button.js-subscribe-button.label-subscribe-button.btn.action-buttons{ type: "button", data: { toggle: "tooltip" } } %span= label_subscription_toggle_button_text(label) - if can? current_user, :admin_label, @project |