8355-testToMaster #1177

Merged
alexm merged 326 commits from 8355-testToMaster into master 2025-01-07 06:46:55 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 68c691587d - Show all commits

View File

@ -207,8 +207,8 @@ const openGrafana = (expeditionFk) => {
onMounted(async () => {
stateStore.rightDrawer = true;
const filteredColumns = columns.value.filter((col) => col.name !== 'history');
allColumnNames.value = filteredColumns.map((col) => col.name);
const filteredColumns = columns.value.filter(({ name }) => name !== 'history');
allColumnNames.value = filteredColumns.map(({ name }) => name);
});
onUnmounted(() => (stateStore.rightDrawer = false));