diff options
| author | Fuwn <[email protected]> | 2023-10-20 18:15:26 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-10-20 18:15:32 -0700 |
| commit | 9a9515eb69458c0e28fedc66072eecc25b326a45 (patch) | |
| tree | a5d4965d32b1df017494befaf7ed748df53e3318 /src/stores | |
| parent | feat(manga): disable chapter guessing (diff) | |
| download | due.moe-9a9515eb69458c0e28fedc66072eecc25b326a45.tar.xz due.moe-9a9515eb69458c0e28fedc66072eecc25b326a45.zip | |
fix(settings): change livechart mode
Diffstat (limited to 'src/stores')
| -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 6863ae99..5ffae4f5 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -11,7 +11,7 @@ export interface Settings { roundDownChapters: boolean; sortByDifference: boolean; forceLightTheme: boolean; - linkToAniList: boolean; + linkToLiveChart: boolean; displayPausedMedia: boolean; limitListHeight: boolean; displaySocialButton: boolean; @@ -28,7 +28,7 @@ const defaultSettings: Settings = { roundDownChapters: true, sortByDifference: false, forceLightTheme: false, - linkToAniList: true, + linkToLiveChart: true, displayPausedMedia: true, limitListHeight: false, displaySocialButton: false, |