aboutsummaryrefslogtreecommitdiff
path: root/src/stores
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-08-22 04:36:48 -0700
committerFuwn <[email protected]>2024-08-22 04:36:48 -0700
commit84ed9e26cdeb7e02684f019ca7d07fef5286351e (patch)
tree7454c5ad9736b9f7676ae3e541a8fa0d40e64dc7 /src/stores
parentfeat(Completed): allow hiding panels (diff)
downloaddue.moe-84ed9e26cdeb7e02684f019ca7d07fef5286351e.tar.xz
due.moe-84ed9e26cdeb7e02684f019ca7d07fef5286351e.zip
feat(settings): data saver
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/settings.ts2
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,