Add:Quick match option

This commit is contained in:
advplyr 2022-02-15 16:15:09 -06:00
parent de32698ea5
commit 088969e1fe
6 changed files with 113 additions and 6 deletions

View file

@ -20,6 +20,11 @@ export const getters = {
},
getSortedLibraries: state => () => {
return state.libraries.map(lib => ({ ...lib })).sort((a, b) => a.displayOrder - b.displayOrder)
},
getLibraryProvider: state => libraryId => {
var library = state.libraries.find(l => l.id === libraryId)
if (!library) return null
return library.provider
}
}