Merge pull request #945 from Safelite/CSR-1023-update-with-iss-code

CSR-1023 update Concept code with code from ISS.
This commit is contained in:
bmauger 2023-01-18 14:23:43 -05:00 committed by GitHub
commit a75f6a0aa7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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: {