Renamed EntityTableMobile.vue

This commit is contained in:
2025-09-24 17:49:27 +02:00
parent 476b4b5d4f
commit a207237bc2
2 changed files with 3 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
import {useTempStore} from "~/stores/temp.js"; import {useTempStore} from "~/stores/temp.js";
import FloatingActionButton from "~/components/mobile/FloatingActionButton.vue"; import FloatingActionButton from "~/components/mobile/FloatingActionButton.vue";
import EntityTable from "~/components/EntityTable.vue"; import EntityTable from "~/components/EntityTable.vue";
import EntityListMobile from "~/components/EntityListMobile.vue"; import EntityTableMobile from "~/components/EntityTableMobile.vue";
const { has } = usePermission() const { has } = usePermission()
@@ -145,6 +145,7 @@ const filteredRows = computed(() => {
</template> </template>
</UDashboardNavbar> </UDashboardNavbar>
<UDashboardToolbar> <UDashboardToolbar>
<template #left v-if="$slots['left-toolbar']"> <template #left v-if="$slots['left-toolbar']">
<slot name="left-toolbar"/> <slot name="left-toolbar"/>
@@ -181,7 +182,7 @@ const filteredRows = computed(() => {
</USelectMenu> </USelectMenu>
</template> </template>
</UDashboardToolbar> </UDashboardToolbar>
<EntityListMobile <EntityTableMobile
v-if="platform === 'mobile'" v-if="platform === 'mobile'"
:type="props.type" :type="props.type"
:columns="columns" :columns="columns"