From 94b2c3e6b57864dab8819c17e9e9eedb4c5ff319 Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Sun, 2 Mar 2025 17:10:05 -0800 Subject: [PATCH] dash: rearrange --- src/views/DashboardView.vue | 53 ++++++++++++++++++++----------------- 1 file changed, 28 insertions(+), 25 deletions(-) diff --git a/src/views/DashboardView.vue b/src/views/DashboardView.vue index a55258f..68b2ede 100644 --- a/src/views/DashboardView.vue +++ b/src/views/DashboardView.vue @@ -11,35 +11,33 @@
- - -
-
-
-
-

Don't see what you are looking for?

+
@@ -72,6 +70,11 @@ async function refreshList() { workspaces.value.sort((a, b) => { return (b.lastAccess ?? 0) - (a.lastAccess ?? 0); }); + + // Insert a create workspace card + workspaces.value.splice(1, 0, { + name: '__create__', + } as IWkspStats); } onMounted(() => {