From d2658aa979d7b52f32a01859ccc52bd299171b43 Mon Sep 17 00:00:00 2001 From: Janis Streib <janis.streib@kit.edu> Date: Fri, 11 Aug 2023 13:02:12 +0200 Subject: [PATCH] FIX: use correct alerts on init error page --- frontend/src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/App.vue b/frontend/src/App.vue index dffd1ad1b..8f27f72fc 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -94,7 +94,7 @@ ref="errorIcon"></netvs-icon> <h1 ref="wrongText">{{ $t('views.app.something_went_wrong') }}</h1> <p>{{ $t('views.app.try_again_later') }}</p> - <div v-if="$store.state.alerts.length > 0"> + <div v-if="$store.state.sys_alerts.length > 0"> <hr/> <h2>{{ $t('system.alerts') }}</h2> <SystemAlertDisplay></SystemAlertDisplay> -- GitLab