diff options
author | Rémy Coutable <remy@rymai.me> | 2016-03-31 16:43:12 +0000 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2016-03-31 16:43:12 +0000 |
commit | 95c7aa62defdbc7984c71faeb0b901a7fe59b223 (patch) | |
tree | c45ca97bcc7133b06fff9bc10cfc44baf3caf2d7 /app/views/dashboard | |
parent | 220b51264cf8f032f28a1b85b09de2c85f2e127d (diff) | |
parent | f1d1dc00a93288623a012a933203ed99dc71fed8 (diff) | |
download | gitlab-ce-95c7aa62defdbc7984c71faeb0b901a7fe59b223.tar.gz |
Merge branch 'fix-todos' into 'master'
Destroy related todos when an Issue/MR is deleted
Closes #14550
Closes #14598
See merge request !3376
Diffstat (limited to 'app/views/dashboard')
-rw-r--r-- | app/views/dashboard/todos/_todo.html.haml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/views/dashboard/todos/_todo.html.haml b/app/views/dashboard/todos/_todo.html.haml index 25d2b64e381..aa0aff86d4d 100644 --- a/app/views/dashboard/todos/_todo.html.haml +++ b/app/views/dashboard/todos/_todo.html.haml @@ -10,7 +10,10 @@ (removed) %span.todo-label = todo_action_name(todo) - = todo_target_link(todo) + - if todo.target + = todo_target_link(todo) + - else + (removed) · #{time_ago_with_tooltip(todo.created_at)} |