7773-testToMaster_2430 #561

Merged
alexm merged 424 commits from 7773-testToMaster_2430 into master 2024-07-23 06:24:05 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit dd872dba3b - Show all commits

View File

@ -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) {