From bd64b4fe7b031b7888d70480bdaf0f5d3473072a Mon Sep 17 00:00:00 2001 From: Greg Lorenzen Date: Sat, 6 Jul 2024 22:41:47 +0000 Subject: [PATCH] Add jump forwards and jump backwards settings to user store --- client/store/user.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/client/store/user.js b/client/store/user.js index 70746bc1e..1279f8ef3 100644 --- a/client/store/user.js +++ b/client/store/user.js @@ -13,7 +13,9 @@ export const state = () => ({ seriesSortDesc: false, seriesFilterBy: 'all', authorSortBy: 'name', - authorSortDesc: false + authorSortDesc: false, + jumpForwardAmount: 10, + jumpBackwardAmount: 10, } })