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 e17dbc47cd
commit e169c8ff46

View file

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