Browse Source

feat(nc-gui): fix bug checkbox with multiple table

pull/5455/head
Khisby Al Ghofari 1 year ago
parent
commit
7860ab5495
  1. 10
      packages/nc-gui/components/template/Editor.vue

10
packages/nc-gui/components/template/Editor.vue

@ -87,7 +87,7 @@ const isImporting = ref(false)
const importingTips = ref<Record<string, string>>({})
const checkAllRecord = ref(false)
const checkAllRecord = ref<boolean[]>([])
const uiTypeOptions = ref<Option[]>(
(Object.keys(UITypes) as (keyof typeof UITypes)[])
@ -618,10 +618,10 @@ function isSelectDisabled(uidt: string, disableSelect = false) {
return (uidt === UITypes.SingleSelect || uidt === UITypes.MultiSelect) && disableSelect
}
function handleCheckAllRecord(event, table_name){
const isChecked = event.target.checked;
function handleCheckAllRecord(event, table_name) {
const isChecked = event.target.checked
for (const record of srcDestMapping.value[table_name]) {
record.enabled = isChecked;
record.enabled = isChecked
}
}
</script>
@ -682,7 +682,7 @@ function handleCheckAllRecord(event, table_name){
</span>
<span v-if="column.key === 'action'">
<a-checkbox
v-model:checked="checkAllRecord"
v-model:checked="checkAllRecord[table.table_name]"
@change="handleCheckAllRecord($event, table.table_name)"
/>
</span>

Loading…
Cancel
Save