Merge branch 'develop' into feature/SSR-131

This commit is contained in:
Kulbhushan Kaushik 2022-12-05 08:54:42 -05:00
commit 17a736b542
2 changed files with 10 additions and 3 deletions

View file

@ -3,9 +3,16 @@ export const inputButtonProps = {
type: [String, Number],
required: true,
},
modelValue: {
type: [Array, String, Number],
modelValue: {
required: true,
validation: function(prop) {
return (
prop === null
|| Array.isArray(prop)
|| typeof prop === 'string'
|| (typeof prop === 'number' && !Number.isNaN(prop))
)
}
},
isMultiSelect: Boolean,
groupName: {

View file

@ -20,7 +20,7 @@
name: "year-question",
data() {
return {
years: Array,
years: [],
};
},
props: {