Skip to content

Commit

Permalink
Rename session in progress status
Browse files Browse the repository at this point in the history
This is now showing as "Session scheduled" in the prototype.
  • Loading branch information
thomasleese committed Oct 7, 2024
1 parent 57b32d7 commit 82e2c39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/helpers/sessions_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def session_status_tag(session)
elsif session.completed?
govuk_tag(text: "All sessions completed", colour: "green")
else
govuk_tag(text: "Session in progress")
govuk_tag(text: "Sessions scheduled")
end
end
end
2 changes: 1 addition & 1 deletion spec/helpers/sessions_helper_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@

it do
expect(session_status_tag).to eq(
"<strong class=\"nhsuk-tag\">Session in progress</strong>"
"<strong class=\"nhsuk-tag\">Sessions scheduled</strong>"
)
end
end
Expand Down

0 comments on commit 82e2c39

Please sign in to comment.