diff options
author | Phil Hughes <me@iamphill.com> | 2016-11-07 16:12:05 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2016-11-07 17:27:17 +0000 |
commit | 0bc9008ef62277094534711238894b4e43aca7b0 (patch) | |
tree | 801c1d9077afd74169d03c91681ff49323f61aff /app/views/dashboard | |
parent | 717b8a769245d5255adc70c0cac78fa148b38778 (diff) | |
download | gitlab-ce-0bc9008ef62277094534711238894b4e43aca7b0.tar.gz |
Fixed todos empty state when filteringtodos-filter-empty-state
Closes #24127
Diffstat (limited to 'app/views/dashboard')
-rw-r--r-- | app/views/dashboard/todos/index.html.haml | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/app/views/dashboard/todos/index.html.haml b/app/views/dashboard/todos/index.html.haml index e247eebc3fc..16bdf284f83 100644 --- a/app/views/dashboard/todos/index.html.haml +++ b/app/views/dashboard/todos/index.html.haml @@ -83,14 +83,18 @@ .todos-all-done = render "shared/empty_states/todos_all_done.svg" %h4.text-center - Good job! Looks like you don't have any todos left. - %p.text-center - Are you looking for things to do? Take a look at - = succeed "," do - = link_to "the opened issues", issues_dashboard_path - contribute to - = link_to "merge requests", merge_requests_dashboard_path - or mention someone in a comment to assign a new todo automatically. + - if todos_filter_empty? + Good job! Looks like you don't have any todos left. + - else + There are no Todos to show. + - if todos_filter_empty? + %p.text-center + Are you looking for things to do? Take a look at + = succeed "," do + = link_to "the opened issues", issues_dashboard_path + contribute to + = link_to "merge requests", merge_requests_dashboard_path + or mention someone in a comment to assign a new todo automatically. - else .todos-empty .todos-empty-hero |