Fixed issue boards counter border when unauthorized

When unauthorized the border on the counter in issue boards didn't span the whole way around

Closes #23664
This commit is contained in:
Phil Hughes 2016-11-16 13:04:29 +00:00
parent cfcf5460b5
commit 02a2f3138d
2 changed files with 5 additions and 1 deletions

View file

@ -7,7 +7,7 @@
data: { container: "body", placement: "bottom" } }
{{ list.title }}
.board-issue-count-holder.pull-right.clearfix{ "v-if" => 'list.type !== "blank"' }
%span.board-issue-count.pull-left{ ":class" => '{ "has-btn": list.type !== "done" }' }
%span.board-issue-count.pull-left{ ":class" => '{ "has-btn": list.type !== "done" && !disabled }' }
{{ list.issuesSize }}
- if can?(current_user, :admin_issue, @project)
%button.btn.btn-small.btn-default.pull-right.has-tooltip{ type: "button",

View file

@ -0,0 +1,4 @@
---
title: Fixed issue boards counter border when unauthorized
merge_request:
author: