update sidebar layout, update theme, update client table data

This commit is contained in:
Casey 2025-12-16 06:45:50 -06:00
parent 011080e0f8
commit 1a837ffcfc
4 changed files with 109 additions and 63 deletions

View file

@ -22,6 +22,8 @@ import {
} from "@iconoir/vue";
import SidebarSpeedDial from "./SidebarSpeedDial.vue";
const emit = defineEmits(['toggle']);
const router = useRouter();
const modalStore = useModalStore();
const notifications = useNotificationStore();
@ -40,6 +42,7 @@ const focusClientInput = (inputId) => {
const toggleSidebar = () => {
isCollapsed.value = !isCollapsed.value;
emit('toggle', isCollapsed.value);
};
const openSidebarAndDial = (category) => {