-
Notifications
You must be signed in to change notification settings - Fork 2
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
feat: org uni group forms #479
base: master
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for dhis2-maintenance-app-beta ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
ModelTransferField, | ||
} from '../../../components' | ||
import { SECTIONS_MAP } from '../../../lib' | ||
import { DataDimensionField } from '../../dataElementGroupSets/fields' |
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.
There's some unused imports here.
|
||
generateDefaultEditFormTests({ componentName: 'Organisation unit group' }) | ||
|
||
xdescribe('Organisation unit group edit form additional tests', () => { |
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.
typo?
xdescribe('Organisation unit group edit form additional tests', () => { | |
describe('Organisation unit group edit form additional tests', () => { |
</StandardFormField> | ||
<StandardFormField> | ||
<FieldRFF | ||
component={CheckboxFieldFF} |
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.
I noticed that it seems like the label/clickable area for CheckboxField
spans the entire width of the form. This is of course not something introduced in this PR. But may be something we want to take a look at? The easiest solution is to add display: flex
to StandardFormField
, I think? But we've also talked about removing the need for the StandardFormField
-wrappers, and instead add gap to StandardFormSection
.
No description provided.