Getting UI framework error. I went to edit my vitals page after editing and generating the omod file, when i reloaded the openmrs I got this error
@aditya_ps Sorry for the error. Kindly basing on the screenshot , the OpenMRS UI Framework is trying to render a view (administrativenotification/notifications
) that expects a variable named notifications
to be available in the model, but it wasn’t provided by the controller.
Kindly could you have :
- Edited the controller or Groovy page (
.gsp
) for this view and either:
- Removed or renamed the
notifications
variable. - Added a fragment or template that references
${notifications}
without defining it. or
- Added a fragment (
includeFragment
orfragment
) without passing required parameters, such asnotifications
?