diff options
| author | Fuwn <[email protected]> | 2023-12-16 00:19:52 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-16 00:19:52 -0800 |
| commit | cedc294b232e2f902fb73a867788e4b5e48beebd (patch) | |
| tree | bbf5183576ecbabd6e03748244554599a2786c4f /src/stores | |
| parent | feat(settings): scroll to section (diff) | |
| download | due.moe-cedc294b232e2f902fb73a867788e4b5e48beebd.tar.xz due.moe-cedc294b232e2f902fb73a867788e4b5e48beebd.zip | |
feat(anime): right align countdown option
Diffstat (limited to 'src/stores')
| -rw-r--r-- | src/stores/settings.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts index dca40ea9..57d94c6b 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -26,6 +26,7 @@ export interface Settings { disableAnime: boolean; disableUpcomingAnime: boolean; display24HourTime: boolean; + displayCountdownRightAligned: boolean; // eslint-disable-next-line @typescript-eslint/no-explicit-any [key: string]: any; } @@ -50,6 +51,7 @@ const defaultSettings: Settings = { disableAnime: false, disableUpcomingAnime: false, display24HourTime: false, + displayCountdownRightAligned: false, // Calculation roundDownChapters: true, |