Merge pull request #1063 from Safelite/defect/CSR-1331

Fixed dropdown issue
This commit is contained in:
Leah Schumann 2023-04-14 14:56:29 -04:00 committed by GitHub
commit f70bed0802
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -49,7 +49,7 @@ export default {
customDropdownId: String,
},
setup(props) {
const dropdownId = !props.customInputId
const dropdownId = !props.customDropdownId
? `dropdown-${crypto.randomUUID()}`
: props.customDropdownId;