Skip to content

Commit

Permalink
Merge branch 'w2p-108045_repeatable-date-fields-label-fix_contribute-…
Browse files Browse the repository at this point in the history
…7.4' into w2p-108045_repeatable-date-fields-label-fix_contribute-main
  • Loading branch information
LotteHofstede committed Nov 10, 2023
2 parents 6e6cfbb + a3181a0 commit 0d39fe4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ describe('DsDynamicFormControlContainerComponent test suite', () => {
metadataFields: [],
hasSelectableMetadata: false
}),
new DynamicDsDatePickerModel({ id: 'datepicker' }),
new DynamicDsDatePickerModel({ id: 'datepicker', repeatable: false }),
new DynamicLookupModel({
id: 'lookup',
metadataFields: [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export const DATE_TEST_MODEL_CONFIG = {
placeholder: 'Date',
readOnly: false,
required: true,
repeatable: false,
toggleIcon: 'fas fa-calendar'
};

Expand Down
2 changes: 1 addition & 1 deletion src/app/shared/form/builder/form-builder.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ describe('FormBuilderService test suite', () => {
hasSelectableMetadata: true
}),

new DynamicDsDatePickerModel({ id: 'testDate' }),
new DynamicDsDatePickerModel({ id: 'testDate', repeatable: false}),

new DynamicLookupModel({
id: 'testLookup',
Expand Down

0 comments on commit 0d39fe4

Please sign in to comment.