diff options
| author | Fuwn <[email protected]> | 2023-12-07 03:15:28 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-07 03:15:28 -0800 |
| commit | 31fcf3e18911f55acd43cfc28f3bde368f20a255 (patch) | |
| tree | c55745213d0fa49f045ebeb18003904bee7f0198 /src/stores/settings.ts | |
| parent | fix(app): types for bun (diff) | |
| download | due.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.ts | 4 |
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, |