Skip to content

Commit

Permalink
Merge pull request #5497 from TheZero0-ctrl/fix-5486
Browse files Browse the repository at this point in the history
Add "YTD" to "Time Completed" Learning Hours Table Column
  • Loading branch information
schoork authored Jan 23, 2024
2 parents 54790c8 + f33dc7f commit 8e12b34
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<thead>
<tr>
<th><h6>Volunteer</h6></th>
<th><h6>Time Completed</h6></th>
<th><h6>Time Completed YTD</h6></th>
</tr>
<!-- end table row-->
</thead>
Expand Down
4 changes: 2 additions & 2 deletions spec/requests/learning_hours_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

it "displays the time completed column" do
get learning_hours_path
expect(response.body).to include("Time Completed")
expect(response.body).to include("Time Completed YTD")
end
end
end
Expand All @@ -55,7 +55,7 @@

it "displays the time completed column" do
get learning_hours_path
expect(response.body).to include("Time Completed")
expect(response.body).to include("Time Completed YTD")
end
end
end
Expand Down

0 comments on commit 8e12b34

Please sign in to comment.