aboutsummaryrefslogtreecommitdiff
path: root/src/stores
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-11-18 23:46:08 -0800
committerFuwn <[email protected]>2023-11-18 23:46:08 -0800
commit600e8a843cf9209330f2bacd40a2bfdb68471d77 (patch)
tree8de55f3d7fe5ce75bca6eeb85fed50bc73a867f4 /src/stores
parentfeat(wrapped): title length slider (diff)
downloaddue.moe-600e8a843cf9209330f2bacd40a2bfdb68471d77.tar.xz
due.moe-600e8a843cf9209330f2bacd40a2bfdb68471d77.zip
feat(upcoming): option to display planning
Diffstat (limited to 'src/stores')
-rw-r--r--src/stores/settings.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts
index b6ad02bf..fb4d0fff 100644
--- a/src/stores/settings.ts
+++ b/src/stores/settings.ts
@@ -20,6 +20,7 @@ export interface Settings {
displayNativeTitles: boolean;
guessMethod: 'median' | 'trimmed_mean' | 'weighted_average';
disableOutOfDateVolumeWarning: boolean;
+ displayPlannedAnime: boolean;
}
const defaultSettings: Settings = {
@@ -40,7 +41,8 @@ const defaultSettings: Settings = {
hoverNavigation: false,
displayNativeTitles: false,
guessMethod: 'trimmed_mean',
- disableOutOfDateVolumeWarning: false
+ disableOutOfDateVolumeWarning: false,
+ displayPlannedAnime: false
};
const createStore = () => {