Merge pull request #856 from shariquerik/table-multiselect-fix

This commit is contained in:
Shariq Ansari 2025-05-23 20:39:42 +05:30 committed by GitHub
commit 900c1d3570
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -64,7 +64,10 @@ const emit = defineEmits(['change'])
const { getFields } = getMeta(props.doctype)
const values = defineModel()
const values = defineModel({
type: Array,
default: () => [],
})
const valuesRef = ref([])
const error = ref(null)