Add jump forwards and jump backwards settings to user store

This commit is contained in:
Greg Lorenzen 2024-07-06 22:41:47 +00:00
parent 809ab80530
commit bd64b4fe7b

View file

@ -13,7 +13,9 @@ export const state = () => ({
seriesSortDesc: false, seriesSortDesc: false,
seriesFilterBy: 'all', seriesFilterBy: 'all',
authorSortBy: 'name', authorSortBy: 'name',
authorSortDesc: false authorSortDesc: false,
jumpForwardAmount: 10,
jumpBackwardAmount: 10,
} }
}) })