diff options
author | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-01-18 08:12:31 +0100 |
---|---|---|
committer | Grzegorz Bizon <grzesiek.bizon@gmail.com> | 2016-01-18 08:12:31 +0100 |
commit | 6fe33804dc080522242d9ea3639548c2b246a56b (patch) | |
tree | bcfca47b98d40a74cbfb8ad81618f38d27b30c05 /app | |
parent | 7506afe14bad7bb4f93e26a539b3ffe75303e180 (diff) | |
download | gitlab-ce-6fe33804dc080522242d9ea3639548c2b246a56b.tar.gz |
Remove dropdown containing CI Lint button on builds pagefeature/expose-ci-lint-tool
Link to CI Lint on builds page will be a separate button from now on.
Diffstat (limited to 'app')
-rw-r--r-- | app/views/projects/builds/index.html.haml | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/app/views/projects/builds/index.html.haml b/app/views/projects/builds/index.html.haml index 747d94cc9e6..bbb6944a65a 100644 --- a/app/views/projects/builds/index.html.haml +++ b/app/views/projects/builds/index.html.haml @@ -9,15 +9,9 @@ = link_to 'Cancel running', cancel_all_namespace_project_builds_path(@project.namespace, @project), data: { confirm: 'Are you sure?' }, class: 'btn btn-danger', method: :post - .dropdown.inline - %button.btn.btn-default.dropdown-toggle{ type: 'button', id: 'tools-dropdown', 'data-toggle' => 'dropdown' } - Tools - %span.caret - %ul.dropdown-menu.dropdown-menu-right - %li - = link_to ci_lint_path do - = icon('wrench') - %span CI Lint Tool + = link_to ci_lint_path, class: 'btn btn-default' do + = icon('wrench') + %span CI Lint %ul.nav-links %li{class: ('active' if @scope.nil?)} |