summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKushal Pandya <kushal@gitlab.com>2016-12-27 08:19:01 +0530
committerKushal Pandya <kushal@gitlab.com>2016-12-31 11:58:36 +0530
commite0f765ae440da26f1aa9b888dbff80e32b3be5ce (patch)
tree55283530171fffae0bfb0d54175f59f9e4a316b4
parentfb3e365412954b5d23a048518d70c15894cb9686 (diff)
downloadgitlab-ce-e0f765ae440da26f1aa9b888dbff80e32b3be5ce.tar.gz
HAMLLint: Fix `SpaceInsideHashAttributes` offence
-rw-r--r--app/views/dashboard/todos/_todo.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/dashboard/todos/_todo.html.haml b/app/views/dashboard/todos/_todo.html.haml
index b084685b388..9849b31d7e2 100644
--- a/app/views/dashboard/todos/_todo.html.haml
+++ b/app/views/dashboard/todos/_todo.html.haml
@@ -1,4 +1,4 @@
-%li{ class: "todo todo-#{todo.done? ? 'done' : 'pending'}", id: dom_id(todo), data:{url: todo_target_path(todo) } }
+%li{ class: "todo todo-#{todo.done? ? 'done' : 'pending'}", id: dom_id(todo), data: { url: todo_target_path(todo) } }
= author_avatar(todo, size: 40)
.todo-item.todo-block