show the time range below the fiscal year option

This commit is contained in:
MaysWind
2025-08-24 00:04:36 +08:00
parent 27ae401a7f
commit 8ba1e1997f
9 changed files with 51 additions and 45 deletions
+5 -2
View File
@@ -944,7 +944,8 @@ export function useI18n() {
ret.push({
type: dateRange.type,
displayName: t(dateRange.name),
isBillingCycle: dateRange.isBillingCycle
isBillingCycle: dateRange.isBillingCycle,
isUserCustomRange: dateRange.isUserCustomRange
});
}
@@ -954,7 +955,9 @@ export function useI18n() {
if (includeCustom || dateRange.type !== DateRange.Custom.type) {
ret.push({
type: dateRange.type,
displayName: t(dateRange.name)
displayName: t(dateRange.name),
isBillingCycle: dateRange.isBillingCycle,
isUserCustomRange: dateRange.isUserCustomRange
});
}
}