From 8f73489073db4d99c4c2e31b31d55cce91403753 Mon Sep 17 00:00:00 2001 From: adisposkofh Date: Fri, 17 Apr 2026 14:51:20 +0200 Subject: [PATCH] code cleanup --- public/js/components/Dashboard/Dashboard.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/js/components/Dashboard/Dashboard.js b/public/js/components/Dashboard/Dashboard.js index 526bc45c7..d9684ea74 100644 --- a/public/js/components/Dashboard/Dashboard.js +++ b/public/js/components/Dashboard/Dashboard.js @@ -124,10 +124,10 @@ export default { this.userFirstName = viewData?.name; } }, - created() { + async created() { this.$p.loadCategory('dashboard'); - this.fetchViewData(); + await this.fetchViewData(); this.$api .call(ApiDashboardWidget.listAllowed(this.dashboard))