Fix: typo in Invoice Reports status filter label ("Submmitted" → "Submitted")#2484
Fix: typo in Invoice Reports status filter label ("Submmitted" → "Submitted")#2484LiamStanziani wants to merge 1 commit into
Conversation
📝 WalkthroughWalkthroughThe PR updates one billing status radio label in the Ontario JSP from “Submmitted” to “Submitted”. No filtering, retrieval, or other logic changes are included. ChangesBilling status label correction
Sequence Diagram(s)Not applicable. Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Poem
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Reviewer's guide (collapsed on small PRs)Reviewer's GuideThis PR fixes a typo in the Ontario billing Invoice Reports JSP by correcting the user-visible label text for the 'Submitted OHIP' status filter radio button, without altering any functional behavior or server-submitted values. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Snapshot WarningsEnsure that dependencies are being submitted on PR branches and consider enabling retry-on-snapshot-warnings. See the documentation for more information and troubleshooting advice. Scanned FilesNone |
There was a problem hiding this comment.
Code Review
This pull request corrects a typographical error in billingONStatus.jsp, changing 'Submmitted' to 'Submitted' for the OHIP status label. There are no review comments, and I have no additional feedback to provide.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
|
@SourceryAI review |
|
@coderabbitai review |
✅ Action performedReview finished.
|
Qodo reviews are paused for this user.Troubleshooting steps vary by plan Learn more → On a Teams plan? Using GitHub Enterprise Server, GitLab Self-Managed, or Bitbucket Data Center? |
Summary
Corrects a spelling mistake in the Ontario billing Invoice Reports screen, where the
"Submitted OHIP" status-filter radio button was mislabelled "Submmitted OHIP" (double "m").
This is a one-line, display-only text change with no functional impact.
Closes: Typos in OSCAR GUI
Problem
In Admin Panel → Billing → Invoice Reports, the radio button used to filter invoices by
status rendered its label as "Submmitted OHIP" instead of "Submitted OHIP". The misspelling
was visible to every user of the Ontario billing reporting screen.
src/main/webapp/billing/CA/ON/billingONStatus.jspstatusTyperadio button,value="B"Solution
Corrected the label text from
SubmmittedtoSubmitted.UI Before:
UI After:
Only the user-visible label text was changed. The radio button's
value="B"— the value submittedto the server and used for filtering — is untouched, so there is no behavioural or data change.
Testing
Summary by Sourcery
Bug Fixes:
Summary by cubic
Fixed a misspelling in the Ontario billing Invoice Reports status filter: "Submmitted OHIP" is now "Submitted OHIP".
Display-only change; no logic, values, or behavior affected.
Written for commit 80b0442. Summary will update on new commits.
Summary by CodeRabbit