From 97870827e736ef6cf693000d430956fc7bfeb6bf Mon Sep 17 00:00:00 2001 From: Jono Targett Date: Mon, 16 Mar 2026 08:05:10 +1030 Subject: [PATCH] CommandsWidget working at a bare minimum level --- console/src/App.vue | 2 + .../components/dashboard/CommandsWidget.vue | 114 ++++++++++++++++++ .../components/dashboard/PropertiesWidget.vue | 2 +- 3 files changed, 117 insertions(+), 1 deletion(-) create mode 100644 console/src/components/dashboard/CommandsWidget.vue diff --git a/console/src/App.vue b/console/src/App.vue index 9fbaed5..9114967 100644 --- a/console/src/App.vue +++ b/console/src/App.vue @@ -7,6 +7,7 @@ import RecentActivityWidget from "./components/dashboard/RecentActivityWidget.vu import ProductOverviewWidget from "./components/dashboard/ProductOverviewWidget.vue"; import PropertiesWidget from "./components/dashboard/PropertiesWidget.vue"; +import CommandsWidget from "./components/dashboard/CommandsWidget.vue";