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

@@ -4,7 +4,7 @@
<q-img alt="OYS Logo" src="~assets/oysqn_logo.png" fit="scale-down" />
<q-list class="full-width mobile-only">
<q-item
v-for="link in links.filter((x) => x.front_links)"
v-for="link in enabledLinks.filter((x) => x.front_links)"
:key="link.name"
>
<q-btn
@@ -23,6 +23,6 @@
</template>
<script lang="ts" setup>
import { links } from 'src/router/navlinks.js';
import { enabledLinks } from 'src/router/navlinks.js';
import ToolbarComponent from 'components/ToolbarComponent.vue';
</script>