diff options
author | Victor Wu <victor@gitlab.com> | 2017-11-03 00:01:56 +0000 |
---|---|---|
committer | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2017-11-03 00:01:56 +0000 |
commit | 55bd24ab4f1910f4cb76e28e3cc674c67c6cf191 (patch) | |
tree | 0b9637082d0b37d53dc11c8f172f43fd4a303261 /app/views/dashboard | |
parent | 4154fa28e948532f15e00b0094e9fc83545a6865 (diff) | |
download | gitlab-ce-55bd24ab4f1910f4cb76e28e3cc674c67c6cf191.tar.gz |
Resolve ""To do" should be "Todos" on Todos list page"
Diffstat (limited to 'app/views/dashboard')
-rw-r--r-- | app/views/dashboard/todos/index.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/dashboard/todos/index.html.haml b/app/views/dashboard/todos/index.html.haml index f62a0cd681e..a5686002328 100644 --- a/app/views/dashboard/todos/index.html.haml +++ b/app/views/dashboard/todos/index.html.haml @@ -8,7 +8,7 @@ %li.todos-pending{ class: active_when(params[:state].blank? || params[:state] == 'pending') }> = link_to todos_filter_path(state: 'pending') do %span - To do + Todos %span.badge = number_with_delimiter(todos_pending_count) %li.todos-done{ class: active_when(params[:state] == 'done') }> |