diff --git a/app/views/case_logs/_tasklist.html.erb b/app/views/case_logs/_tasklist.html.erb index f877fc5e3..fdf4c5aa9 100644 --- a/app/views/case_logs/_tasklist.html.erb +++ b/app/views/case_logs/_tasklist.html.erb @@ -12,7 +12,7 @@ <% questions_for_subsection = @form.questions_for_subsection(subsection_key).keys %> <% next_page_path = get_first_page_or_check_answers(subsection_key, @case_log, @form, questions_for_subsection) %> <%= link_to subsection_value["label"], next_page_path, class: "task-name govuk-link" %> - <% subsection_status = get_subsection_status(subsection_key, @case_log, questions_for_subsection).humanize %> + <% subsection_status = get_subsection_status(subsection_key, @case_log, questions_for_subsection) %> <%= TasklistHelper::STATUSES[subsection_status] %> diff --git a/app/views/case_logs/edit.html.erb b/app/views/case_logs/edit.html.erb index 551ce0cb5..83d442cb9 100644 --- a/app/views/case_logs/edit.html.erb +++ b/app/views/case_logs/edit.html.erb @@ -5,7 +5,7 @@ <%= @case_log.id %>
You've completed <%= get_subsections_count(@form, @case_log, :completed) %> of <%= get_subsections_count(@form, @case_log, :all) %> sections.
<% next_incomplete_section=get_next_incomplete_section(@form, @case_log) %>