From d145e09afa3f8015c0279628fb28bd4b881e9f97 Mon Sep 17 00:00:00 2001 From: Daniyar Yeralin Date: Tue, 15 Jul 2025 21:39:55 -0400 Subject: [PATCH] Update Workspace.vue 1. Initialize Material design icons 2. Align initialization order with Minimal.vue --- src/views/Workspace.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/Workspace.vue b/src/views/Workspace.vue index 42f0e06d..01b15327 100644 --- a/src/views/Workspace.vue +++ b/src/views/Workspace.vue @@ -75,8 +75,9 @@ export default { }, }, mounted() { - this.setTheme(); this.initiateFontAwesome(); + this.initiateMaterialDesignIcons(); + this.setTheme(); this.url = this.getInitialUrl(); }, };