8315-devToTest #1094

Merged
alexm merged 253 commits from 8315-devToTest into test 2024-12-18 10:31: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));