CSR-1023 update Concept code with code from ISS.

Tested site flow locally without issues.
This commit is contained in:
Bryan Mauger 2023-01-18 10:47:59 -05:00
parent 4e1c82361f
commit e5c0689eea

View file

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