aboutsummaryrefslogtreecommitdiff
path: root/src/stores/settings.ts
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-12-07 03:15:28 -0800
committerFuwn <[email protected]>2023-12-07 03:15:28 -0800
commit31fcf3e18911f55acd43cfc28f3bde368f20a255 (patch)
treec55745213d0fa49f045ebeb18003904bee7f0198 /src/stores/settings.ts
parentfix(app): types for bun (diff)
downloaddue.moe-31fcf3e18911f55acd43cfc28f3bde368f20a255.tar.xz
due.moe-31fcf3e18911f55acd43cfc28f3bde368f20a255.zip
feat(media): outbound links option
Diffstat (limited to 'src/stores/settings.ts')
-rw-r--r--src/stores/settings.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts
index 800c824a..aefbd4ac 100644
--- a/src/stores/settings.ts
+++ b/src/stores/settings.ts
@@ -10,7 +10,7 @@ export interface Settings {
displayUnresolved: boolean;
roundDownChapters: boolean;
sortByDifference: boolean;
- linkToLiveChart: boolean;
+ outboundLinksTo: 'anilist' | 'livechartme' | 'animeschedule' | 'myanimelist';
displayPausedMedia: boolean;
limitListHeight: boolean;
displaySocialButton: boolean;
@@ -26,7 +26,7 @@ export interface Settings {
const defaultSettings: Settings = {
// Display
- linkToLiveChart: false,
+ outboundLinksTo: 'anilist',
displayPausedMedia: true,
displayPlannedAnime: true,
limitListHeight: false,