feat: refs #8001 change request
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Robert Ferrús 2024-11-29 09:55:22 +01:00
parent 3c026c9b28
commit 68c691587d
1 changed files with 2 additions and 2 deletions

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));