7773-testToMaster_2430 #561
|
@ -23,7 +23,7 @@ const initialUserConfigViewData = ref();
|
|||
const localColumns = ref([]);
|
||||
|
||||
const areAllChecksMarked = computed(() => {
|
||||
return columns.value.every((col) => col.visible);
|
||||
return localColumns.value.every((col) => col.visible);
|
||||
});
|
||||
|
||||
function setUserConfigViewData(data, isLocal) {
|
||||
|
@ -38,7 +38,7 @@ function setUserConfigViewData(data, isLocal) {
|
|||
}
|
||||
|
||||
function toggleMarkAll(val) {
|
||||
columns.value.forEach((col) => (col.visible = val));
|
||||
localColumns.value.forEach((col) => (col.visible = val));
|
||||
}
|
||||
|
||||
async function getConfig(url, filter) {
|
||||
|
|
Loading…
Reference in New Issue