Skip to content

Commit

Permalink
Merge branch 'develop' into gr-DUOS-2641-ds-datasets
Browse files Browse the repository at this point in the history
  • Loading branch information
rushtong committed Sep 12, 2023
2 parents 5d97573 + 1f67736 commit 6226e4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -305,6 +305,7 @@ export const EditConsentGroup = (props) => {
name: 'gso',
type: FormFieldTypes.CHECKBOX,
toggleText: 'Genetic studies only (GSO)',
disabled: disableFields,
defaultValue: consentGroup.gso,
onChange,
validation: validation.gso,
Expand Down
1 change: 1 addition & 0 deletions src/components/forms/formComponents.js
Original file line number Diff line number Diff line change
Expand Up @@ -485,6 +485,7 @@ export const FormInputCheckbox = (config) => {
label({
className: `regular-checkbox ${!isValid(validation) ? 'errored' : ''}`,
htmlFor: `${id}`,
style: disabled ? { cursor: 'not-allowed' } : null
}, [toggleText])
]);
};
Expand Down

0 comments on commit 6226e4b

Please sign in to comment.