-
Notifications
You must be signed in to change notification settings - Fork 105
(feat) O3-4750 : Provide support on the form builder to be able to auto create a standard section containing encounterDateTime and encounterProvider to support RDE. #545
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
base: main
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -90,6 +90,11 @@ export const configSchema = { | |||||
_default: false, | ||||||
_description: 'Whether to enable form validation', | ||||||
}, | ||||||
enableRDESection: { | ||||||
_type: Type.Boolean, | ||||||
_default: false, | ||||||
_description: 'Whether to enable the RDE section in the form builder', | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
I think there's room for improving this config property description. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we really need a config for this? Since its just a section to be added into the form, and that too, as it is, gets added to the dummy form which is only if you press the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @NethmiRodrigo i could explore this approach. |
||||||
}, | ||||||
}; | ||||||
|
||||||
export interface ConfigObject { | ||||||
|
@@ -99,4 +104,5 @@ export interface ConfigObject { | |||||
dataTypeToRenderingMap: Record<string, Array<string>>; | ||||||
enableFormValidation: boolean; | ||||||
blockRenderingWithErrors: boolean; | ||||||
enableRDESection: boolean; | ||||||
} |
Uh oh!
There was an error while loading. Please reload this page.