refactor(ui): route CheckpointsTable via IdentitySection.checkpointsSlot

This commit is contained in:
hsiegeln
2026-04-23 17:12:12 +02:00
parent 18da187960
commit 9cfe3985d0

View File

@@ -469,9 +469,8 @@ export default function AppDeploymentPage() {
stagedJar={stagedJar}
onStagedJarChange={setStagedJar}
deploying={deploymentInProgress}
>
{app && (
<>
checkpointsSlot={
app ? (
<CheckpointsTable
deployments={deployments}
versions={versions}
@@ -479,7 +478,10 @@ export default function AppDeploymentPage() {
jarRetentionCount={jarRetentionCount}
onSelect={setSelectedCheckpointId}
/>
{selectedDep && (
) : undefined
}
>
{app && selectedDep && (
<CheckpointDetailDrawer
open
onClose={() => setSelectedCheckpointId(null)}
@@ -494,8 +496,6 @@ export default function AppDeploymentPage() {
}}
/>
)}
</>
)}
</IdentitySection>
{/* ── Config tabs ── */}