mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-16 07:57:33 +08:00
show the time range below the fiscal year option
This commit is contained in:
@@ -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
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user