diff options
| author | Fuwn <[email protected]> | 2024-08-22 04:36:48 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-08-22 04:36:48 -0700 |
| commit | 84ed9e26cdeb7e02684f019ca7d07fef5286351e (patch) | |
| tree | 7454c5ad9736b9f7676ae3e541a8fa0d40e64dc7 /src/stores | |
| parent | feat(Completed): allow hiding panels (diff) | |
| download | due.moe-84ed9e26cdeb7e02684f019ca7d07fef5286351e.tar.xz due.moe-84ed9e26cdeb7e02684f019ca7d07fef5286351e.zip | |
feat(settings): data saver
Diffstat (limited to 'src/stores')
| -rw-r--r-- | src/stores/settings.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts index 3b9f7f1a..f19dbf36 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -63,6 +63,7 @@ export interface Settings { displayTotalDueEpisodes: boolean; displayAniListNotifications: boolean; displayFiltersIncludeCompleted: boolean; + displayDataSaver: boolean; } const defaultSettings: Settings = { @@ -103,6 +104,7 @@ const defaultSettings: Settings = { displayTotalDueEpisodes: false, displayAniListNotifications: false, displayFiltersIncludeCompleted: false, + displayDataSaver: false, // Calculation calculateChaptersRoundedDown: true, |