modifications in ui for audio recording display and some backend fixes

This commit is contained in:
tdv
2025-09-03 11:55:34 +03:00
parent 35c5a4dc46
commit 247a2ed6b2
36 changed files with 944 additions and 64 deletions

View File

@@ -2,12 +2,15 @@
import { useColorMode } from '@vueuse/core'
import Navbar from '@/customcompometns/Navbar.vue';
import DeviceComponent from '@/customcompometns/DeviceComponent.vue';
import { useRoute } from 'vue-router';
import { computed } from 'vue';
const mode = useColorMode()
const route = useRoute()
const guid = computed(() => String(route.params.guid ?? route.query.guid ?? ''))
</script>
<template>
<Navbar>
<DeviceComponent></DeviceComponent>
<DeviceComponent :guid="guid"></DeviceComponent>
</Navbar>
</template>