diff --git a/src/api/deployments.ts b/src/api/deployments.ts index f01cc8e..a8bd90b 100644 --- a/src/api/deployments.ts +++ b/src/api/deployments.ts @@ -125,7 +125,7 @@ export type DeploymentLogDto = { // Allowed deployment runtimes in months. Must mirror the backend's // ALLOWED_RUNTIME_MONTHS — wizard can show it without the user reseating the field. - const ALLOWED: Array<1 | 3 | 4 | 6 | 12 | 24> = [1, 3, 4, 6, 12, 24]; + const ALLOWED: Array<1 | 3 | 4 | 6 | 12 | 24 | 36> = [1, 3, 4, 6, 12, 24, 36]; let runtimeMonths: number | undefined; if (raw.expires_at && raw.created_at) { const createdMs = new Date(raw.created_at).getTime(); diff --git a/src/pages/DeploymentWizard.tsx b/src/pages/DeploymentWizard.tsx index 1deb65c..5b2b6ee 100644 --- a/src/pages/DeploymentWizard.tsx +++ b/src/pages/DeploymentWizard.tsx @@ -1243,6 +1243,7 @@ export function DeploymentWizard({ 6 Monate 1 Jahr 2 Jahre + 3 Jahre

@@ -1519,6 +1520,7 @@ export function DeploymentWizard({ "6": "6 Monate", "12": "1 Jahr", "24": "2 Jahre", + "36": "3 Jahre", }; return (