From f14177ce6c1df5412305e6c5cd774aefdfdc0bb0 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 20 Sep 2023 15:28:37 -0700 Subject: feat(settings): limit list height --- src/stores/settings.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/stores/settings.ts') 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 = () => { -- cgit v1.2.3