diff options
| author | Fuwn <[email protected]> | 2026-04-02 10:05:51 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-04-02 10:05:51 +0000 |
| commit | 8692e9c9a2ddcb35eddcd4aa1766f67147dd0515 (patch) | |
| tree | eb7473b5819870a2e060ec9f9fe4270696927a85 /src/stores | |
| parent | revert(ui): remove april fools executive mode (diff) | |
| download | due.moe-8692e9c9a2ddcb35eddcd4aa1766f67147dd0515.tar.xz due.moe-8692e9c9a2ddcb35eddcd4aa1766f67147dd0515.zip | |
feat(debug): add media list timing toggle
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 263b7d43..cd0f306d 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -70,6 +70,7 @@ export interface Settings { displayFiltersIncludeCompleted: boolean; displayDataSaver: boolean; debugDummyLists: boolean; + debugShowListTimings: boolean; displayScheduleFilterList: boolean; displayReverseSort: boolean; displayAnimeSort: "difference" | "start_date" | "end_date" | "time_remaining"; @@ -126,6 +127,7 @@ const defaultSettings: Settings = { // Debug debugDummyLists: false, + debugShowListTimings: false, // Calculation calculateChaptersRoundedDown: true, |