update name to insights explorer
This commit is contained in:
+10
-10
@@ -10,7 +10,7 @@ import {
|
||||
DEFAULT_TREND_CHART_DATA_RANGE,
|
||||
DEFAULT_ASSET_TRENDS_CHART_DATA_RANGE
|
||||
} from './statistics.ts';
|
||||
import { DEFAULT_TRANSACTION_EXPLORE_DATE_RANGE } from './explore.ts';
|
||||
import { DEFAULT_TRANSACTION_EXPLORER_DATE_RANGE } from './explorer.ts';
|
||||
import { DEFAULT_CURRENCY_CODE } from '@/consts/currency.ts';
|
||||
|
||||
export type ApplicationSettingKey = string;
|
||||
@@ -50,9 +50,9 @@ export interface ApplicationSettings extends BaseApplicationSetting {
|
||||
autoSaveTransactionDraft: string;
|
||||
autoGetCurrentGeoLocation: boolean;
|
||||
alwaysShowTransactionPicturesInMobileTransactionEditPage: boolean;
|
||||
// Insights & Explore Page
|
||||
insightsExploreDefaultDateRangeType: number;
|
||||
timezoneUsedForInsightsExplorePage: number;
|
||||
// Insights Explorer Page
|
||||
insightsExplorerDefaultDateRangeType: number;
|
||||
timezoneUsedForInsightsExplorerPage: number;
|
||||
// Account List Page
|
||||
totalAmountExcludeAccountIds: Record<string, boolean>;
|
||||
// Exchange Rates Data Page
|
||||
@@ -115,9 +115,9 @@ export const ALL_ALLOWED_CLOUD_SYNC_APP_SETTING_KEY_TYPES: Record<string, UserAp
|
||||
'autoSaveTransactionDraft': UserApplicationCloudSettingType.String,
|
||||
'autoGetCurrentGeoLocation': UserApplicationCloudSettingType.Boolean,
|
||||
'alwaysShowTransactionPicturesInMobileTransactionEditPage': UserApplicationCloudSettingType.Boolean,
|
||||
// Insights & Explore Page
|
||||
'insightsExploreDefaultDateRangeType': UserApplicationCloudSettingType.Number,
|
||||
'timezoneUsedForInsightsExplorePage': UserApplicationCloudSettingType.Number,
|
||||
// Insights Explorer Page
|
||||
'insightsExplorerDefaultDateRangeType': UserApplicationCloudSettingType.Number,
|
||||
'timezoneUsedForInsightsExplorerPage': UserApplicationCloudSettingType.Number,
|
||||
// Account List Page
|
||||
'totalAmountExcludeAccountIds': UserApplicationCloudSettingType.StringBooleanMap,
|
||||
// Exchange Rates Data Page
|
||||
@@ -165,9 +165,9 @@ export const DEFAULT_APPLICATION_SETTINGS: ApplicationSettings = {
|
||||
autoSaveTransactionDraft: 'disabled',
|
||||
autoGetCurrentGeoLocation: false,
|
||||
alwaysShowTransactionPicturesInMobileTransactionEditPage: false,
|
||||
// Insights & Explore Page
|
||||
insightsExploreDefaultDateRangeType: DEFAULT_TRANSACTION_EXPLORE_DATE_RANGE.type,
|
||||
timezoneUsedForInsightsExplorePage: TimezoneTypeForStatistics.Default.type,
|
||||
// Insights Explorer Page
|
||||
insightsExplorerDefaultDateRangeType: DEFAULT_TRANSACTION_EXPLORER_DATE_RANGE.type,
|
||||
timezoneUsedForInsightsExplorerPage: TimezoneTypeForStatistics.Default.type,
|
||||
// Account List Page
|
||||
totalAmountExcludeAccountIds: {},
|
||||
// Exchange Rates Data Page
|
||||
|
||||
Reference in New Issue
Block a user