CSR-1023 update Concept code with code from ISS.
Tested site flow locally without issues.
This commit is contained in:
parent
4e1c82361f
commit
e5c0689eea
1 changed files with 8 additions and 1 deletions
|
|
@ -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: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue