-
Notifications
You must be signed in to change notification settings - Fork 449
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Consultation Specific route for Doctor Notes #6851
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
✅ Deploy Preview for care-egov-staging ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reduce actions are not supposed to be used in newer PRs. Use useQuery/request
LGTM |
@Pranshu1902 We truly appreciate your efforts. Thank you for taking the time to contribute; this is a very valuable contribution to us 🥇. We always welcome your contribution 🙂, so feel free to contribute to anything anytime, and never lose that spirit of innovation 🙌. |
WHAT
🤖[deprecated] Generated by Copilot at 126b14e
This pull request adds a new feature to the consultation module, which allows doctors to view and edit notes for a specific consultation. It modifies the
PatientNotesSlideover
component to show the notes for a givenconsultationId
, and adds a new route and componentConsultationDoctorNotes
for the same purpose. It also passes theconsultationId
as a prop to theConsultationDetails
component.Proposed Changes
Add consultation specific route like
/facility/id/patient/id/consultation/id/notes
To open the route:
Doctor Notes
window maximize icon
Page view:
@coronasafe/care-fe-code-reviewers @coronasafe/code-reviewers
Merge Checklist
HOW
🤖[deprecated] Generated by Copilot at 126b14e
ConsultationDoctorNotes
component in thePatientNotesSlideover
component by adding the consultationId as a parameter in the URL (link)ConsultationDoctorNotes
component and add a new route for it in theConsultationRoutes
module, using the facilityId, patientId and consultationId as parameters in the URL (link,link)