Stichtag-Zuordnung verstaendlicher beschriften
CI / Build and Deploy (push) Successful in 2m46s

This commit is contained in:
jan
2026-05-29 16:57:51 +02:00
parent b868af4d93
commit 27b2796bb2
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -170,7 +170,7 @@ function getCutoffSelectionOptions(cutoffs: DashboardPeriodCutoff[]): CutoffSele
value: createCutoffSelectionValue(cutoff.id, "PRE"),
cutoffId: cutoff.id,
cutoffPhase: "PRE" as const,
label: `Pre ${cutoff.name}`
label: `Vor ${cutoff.name}`
}));
const lastCutoff = cutoffs[cutoffs.length - 1];
@@ -178,7 +178,7 @@ function getCutoffSelectionOptions(cutoffs: DashboardPeriodCutoff[]): CutoffSele
value: createCutoffSelectionValue(lastCutoff.id, "POST"),
cutoffId: lastCutoff.id,
cutoffPhase: "POST" as const,
label: `Post ${lastCutoff.name}`
label: `Nach ${lastCutoff.name}`
});
return options;
+3 -3
View File
@@ -272,7 +272,7 @@ function getCutoffSelectionOptions(cutoffs: DashboardPeriodCutoff[]): CutoffSele
value: createCutoffSelectionValue(cutoff.id, "PRE"),
cutoffId: cutoff.id,
cutoffPhase: "PRE" as const,
label: `Pre ${cutoff.name}`
label: `Vor ${cutoff.name}`
}));
const lastCutoff = cutoffs[cutoffs.length - 1];
@@ -280,7 +280,7 @@ function getCutoffSelectionOptions(cutoffs: DashboardPeriodCutoff[]): CutoffSele
value: createCutoffSelectionValue(lastCutoff.id, "POST"),
cutoffId: lastCutoff.id,
cutoffPhase: "POST",
label: `Post ${lastCutoff.name}`
label: `Nach ${lastCutoff.name}`
});
return options;
@@ -2470,7 +2470,7 @@ export function DashboardShell({
helperText={
expenseForm.recurrence === "MONTHLY"
? "Monatliche Abos werden anhand ihrer Fälligkeit automatisch den Stichtagen zugeordnet."
: undefined
: "Ordne die Ausgabe zeitlich ein: vor einem Stichtag oder nach dem letzten Stichtag."
}
>
{expenseCutoffOptions.map((option) => (