Add podcast episode date picker for pubDate

This commit is contained in:
advplyr 2022-04-12 17:32:27 -05:00
parent 469278cd1e
commit b0b1d2707d
4 changed files with 24 additions and 4 deletions

View file

@ -34,7 +34,7 @@ export const getters = {
return state.serverSettings[key]
},
getBookCoverAspectRatio: state => {
if (!state.serverSettings || !state.serverSettings.coverAspectRatio) return 1.6
if (!state.serverSettings || !state.serverSettings.coverAspectRatio) return 1
return state.serverSettings.coverAspectRatio === 0 ? 1.6 : 1
},
getNumLibraryItemsSelected: state => state.selectedLibraryItems.length,