Disable not ready stuff
All checks were successful
Build BAB Application Deployment Artifact / build (push) Successful in 1m58s

This commit is contained in:
2024-05-17 21:50:38 -04:00
parent 369bbc4960
commit 97481a5d2e
5 changed files with 18 additions and 8 deletions

View File

@@ -8,7 +8,7 @@
>
<q-scroll-area class="fit">
<q-list padding class="menu-list">
<template v-for="link in links" :key="link.name">
<template v-for="link in enabledLinks" :key="link.name">
<q-item clickable v-ripple :to="link.to">
<q-item-section avatar>
<q-icon :name="link.icon" />
@@ -28,7 +28,7 @@
<script lang="ts" setup>
import { defineComponent } from 'vue';
import { links } from 'src/router/navlinks.js';
import { enabledLinks } from 'src/router/navlinks.js';
import { logout } from 'boot/appwrite';
defineProps(['drawer']);