small tweaks and fixes

This commit is contained in:
vabene1111
2021-08-22 14:18:46 +02:00
parent d744da2c3d
commit 4a1a45032e
3 changed files with 5 additions and 5 deletions

View File

@ -356,7 +356,7 @@ export default {
this.settings.search_keywords = []
for (let x of urlParams.getAll('keyword')) {
let keyword = {id: x, name: 'loading'}
this.settings.search_keywords.push(keyword)
this.settings.search_keywords.push(keyword.id)
apiClient.retrieveKeyword(x).then(result => {
this.$set(this.settings.search_keywords, this.settings.search_keywords.indexOf(keyword), result.data)
})