mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 06:53:03 +00:00
Fixed hints & required error messages for input-type list
- Added mapping for required & hint properties - Set the required type on the checkbox group instead of on each checkbox individually
This commit is contained in:
@@ -220,10 +220,16 @@ describe('FormBuilderService test suite', () => {
|
||||
new DynamicListCheckboxGroupModel({
|
||||
id: 'testCheckboxList',
|
||||
vocabularyOptions: vocabularyOptions,
|
||||
repeatable: true
|
||||
repeatable: true,
|
||||
required: false,
|
||||
}),
|
||||
|
||||
new DynamicListRadioGroupModel({ id: 'testRadioList', vocabularyOptions: vocabularyOptions, repeatable: false }),
|
||||
new DynamicListRadioGroupModel({
|
||||
id: 'testRadioList',
|
||||
vocabularyOptions: vocabularyOptions,
|
||||
repeatable: false,
|
||||
required: false,
|
||||
}),
|
||||
|
||||
new DynamicRelationGroupModel({
|
||||
submissionId,
|
||||
|
Reference in New Issue
Block a user