Skip to content

Commit

Permalink
Show started at
Browse files Browse the repository at this point in the history
Update the admin ui to show the claim started_at time rather than claim
created_at time
  • Loading branch information
rjlynch committed Sep 24, 2024
1 parent 6a44b2f commit e12386c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/helpers/admin/claims_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def admin_student_loan_details(claim)

def admin_submission_details(claim)
[
[translate("admin.started_at"), l(claim.created_at)],
[translate("admin.started_at"), l(claim.started_at)],
[translate("admin.submitted_at"), l(claim.submitted_at)],
[translate("admin.decision_deadline"), l(claim.decision_deadline_date)],
[translate("admin.decision_overdue"), decision_deadline_warning(claim)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
address_line_4: "Oregon",
postcode: "AB12 3CD",
email_address: "[email protected]",
created_at: DateTime.new(2024, 8, 1, 9, 0, 0),
started_at: DateTime.new(2024, 8, 1, 9, 0, 0),
submitted_at: DateTime.new(2024, 8, 1, 11, 0, 0),
academic_year: AcademicYear.new(2024)
)
Expand Down

0 comments on commit e12386c

Please sign in to comment.