Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2017-05-05 22:02:10 +0300
committerPhil Hughes <me@iamphill.com>2017-05-05 22:02:10 +0300
commit0c5b7f8475926a5c97d42649dd12f4b4a32071d4 (patch)
tree1386f4b8ca1acf8508454070ef85413cdd5bb38e
parentbf04c4ba5fbb4c87cad369c5ad224f0cbf112626 (diff)
parent17730a6e1fde0643719c03218e8e582a52e7ad94 (diff)
Merge branch '31632-issue-board-new-issue' into 'master'
Change text of inline issue creation tooltip Closes #31632 See merge request !11118
-rw-r--r--app/views/projects/boards/components/_board.html.haml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/projects/boards/components/_board.html.haml b/app/views/projects/boards/components/_board.html.haml
index 5a4eaf92b16..bc5c727bf0d 100644
--- a/app/views/projects/boards/components/_board.html.haml
+++ b/app/views/projects/boards/components/_board.html.haml
@@ -13,8 +13,8 @@
%button.btn.btn-small.btn-default.pull-right.has-tooltip{ type: "button",
"@click" => "showNewIssueForm",
"v-if" => 'list.type !== "closed"',
- "aria-label" => "Add an issue",
- "title" => "Add an issue",
+ "aria-label" => "New issue",
+ "title" => "New issue",
data: { placement: "top", container: "body" } }
= icon("plus")
- if can?(current_user, :admin_list, @project)