This commit is contained in:
2024-03-14 08:13:05 +01:00
parent d1419fdad1
commit 874ff01551
2 changed files with 36 additions and 43 deletions

View File

@@ -36,8 +36,6 @@
</template> </template>
</UDashboardToolbar> </UDashboardToolbar>
<div class="table">
<UTable <UTable
:rows="filteredRows" :rows="filteredRows"
:columns="columns" :columns="columns"
@@ -65,8 +63,7 @@
<template #unit-data="{row}"> <template #unit-data="{row}">
{{dataStore.units.find(unit => unit.id === row.unit) ? dataStore.units.find(unit => unit.id === row.unit).name : row.unit}} {{dataStore.units.find(unit => unit.id === row.unit) ? dataStore.units.find(unit => unit.id === row.unit).name : row.unit}}
</template> </template>
</UTable> </UTable>/
</div>
</template> </template>

View File

@@ -35,9 +35,6 @@
</USelectMenu> </USelectMenu>
</template> </template>
</UDashboardToolbar> </UDashboardToolbar>
<div class="table">
<UTable <UTable
:rows="filteredRows" :rows="filteredRows"
:columns="columns" :columns="columns"
@@ -46,7 +43,6 @@
@select="(i) => router.push(`/spaces/show/${i.id}`) " @select="(i) => router.push(`/spaces/show/${i.id}`) "
:empty-state="{ icon: 'i-heroicons-circle-stack-20-solid', label: 'Keine Lagerplätze anzuzeigen' }" :empty-state="{ icon: 'i-heroicons-circle-stack-20-solid', label: 'Keine Lagerplätze anzuzeigen' }"
/> />
</div>
</template> </template>