Fix tenant merge review layout

This commit is contained in:
2026-08-06 14:47:01 +02:00
parent ec4e3f39d6
commit 5a05d2e9e8

View File

@@ -115,15 +115,31 @@ onMounted(async () => {
</script> </script>
<template> <template>
<div class="space-y-4"> <UDashboardNavbar title="Tenant-Import prüfen">
<div class="flex flex-wrap items-center justify-between gap-3"> <template #left>
<div> <UButton
<h1 class="text-2xl font-semibold">Tenant-Import prüfen</h1> color="neutral"
<p class="text-sm text-gray-500">Dry-Run {{ importId }}</p> variant="outline"
</div> icon="i-heroicons-chevron-left"
<UButton color="neutral" variant="soft" icon="i-heroicons-arrow-left" @click="router.push(`/administration/tenants/${tenantId}`)"> @click="router.push(`/administration/tenants/${tenantId}`)"
Zurück zum Tenant >
Tenant
</UButton> </UButton>
</template>
<template #right>
<UBadge color="neutral" variant="soft" class="hidden sm:inline-flex">
Dry-Run {{ importId.slice(0, 8) }}
</UBadge>
</template>
</UDashboardNavbar>
<UDashboardPanelContent>
<div class="mx-auto w-full max-w-screen-2xl space-y-6 pb-8">
<div>
<h1 class="text-2xl font-semibold text-highlighted">Import prüfen und zusammenführen</h1>
<p class="mt-1 text-sm text-muted">
Prüfe neue, vorhandene und abweichende Datensätze, bevor Änderungen am Tenant ausgeführt werden.
</p>
</div> </div>
<UAlert <UAlert
@@ -245,4 +261,5 @@ onMounted(async () => {
</div> </div>
</UCard> </UCard>
</div> </div>
</UDashboardPanelContent>
</template> </template>