From 6c774d9a3a17216d2fc99e06b70b3433642fed07 Mon Sep 17 00:00:00 2001 From: Regis Date: Mon, 7 Aug 2017 14:46:45 -0600 Subject: fix haml lint --- app/views/projects/boards/components/_board.html.haml | 4 ++-- 1 file 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 2bcd2c3f30a..f011e2622fa 100644 --- a/app/views/projects/boards/components/_board.html.haml +++ b/app/views/projects/boards/components/_board.html.haml @@ -6,13 +6,13 @@ %i.fa.fa-fw.board-title-expandable-toggle{ "v-if": "list.isExpandable", ":class": "{ \"fa-caret-down\": list.isExpanded, \"fa-caret-right\": !list.isExpanded && list.position === -1, \"fa-caret-left\": !list.isExpanded && list.position !== -1 }", "aria-hidden": "true" } - + %span.has-tooltip{ "v-if": "!list.label", ":title" => '(list.label ? list.label.description : "")', data: { container: "body", placement: "bottom" } } {{ list.title }} - %span.has-tooltip{ "v-if": "list.label", + %span.has-tooltip{ "v-if": "list.label", ":title" => '(list.label ? list.label.description : "")', data: { container: "body", placement: "bottom" }, class: "label color-label title", -- cgit v1.2.1