diff options
| author | Fuwn <[email protected]> | 2023-09-20 15:28:37 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-09-20 15:28:37 -0700 |
| commit | f14177ce6c1df5412305e6c5cd774aefdfdc0bb0 (patch) | |
| tree | 71375c845a87392b520874a1054216ec150903bf /src/stores | |
| parent | fix(feeds): render empty feed if no token (diff) | |
| download | due.moe-f14177ce6c1df5412305e6c5cd774aefdfdc0bb0.tar.xz due.moe-f14177ce6c1df5412305e6c5cd774aefdfdc0bb0.zip | |
feat(settings): limit list height
Diffstat (limited to 'src/stores')
| -rw-r--r-- | src/stores/settings.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts index d0e83514..aa26d662 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -14,6 +14,7 @@ export interface Settings { linkToAniList: boolean; showCompletedAnime: boolean; displayPausedMedia: boolean; + limitListHeight: boolean; } const defaultSettings: Settings = { @@ -28,7 +29,8 @@ const defaultSettings: Settings = { forceLightTheme: false, linkToAniList: true, showCompletedAnime: true, - displayPausedMedia: true + displayPausedMedia: true, + limitListHeight: false }; const createStore = () => { |