delete unused local keys

This commit is contained in:
ogerly 2022-08-29 11:17:45 +02:00
parent 6bd02a2d4b
commit 6acb944ac0
3 changed files with 2 additions and 7 deletions

View File

@ -159,6 +159,5 @@
}, },
"user_deleted": "Nutzer ist gelöscht.", "user_deleted": "Nutzer ist gelöscht.",
"user_recovered": "Nutzer ist wiederhergestellt.", "user_recovered": "Nutzer ist wiederhergestellt.",
"user_search": "Nutzer-Suche", "user_search": "Nutzer-Suche"
"preview": "Vorschau"
} }

View File

@ -159,6 +159,5 @@
}, },
"user_deleted": "User is deleted.", "user_deleted": "User is deleted.",
"user_recovered": "User is recovered.", "user_recovered": "User is recovered.",
"user_search": "User search", "user_search": "User search"
"preview": "Preview"
} }

View File

@ -80,7 +80,6 @@ export default {
.then((result) => { .then((result) => {
this.$store.commit('resetOpenCreations') this.$store.commit('resetOpenCreations')
this.pendingCreations = result.data.listUnconfirmedContributions this.pendingCreations = result.data.listUnconfirmedContributions
console.log(this.pendingCreations)
this.$store.commit('setOpenCreations', result.data.listUnconfirmedContributions.length) this.$store.commit('setOpenCreations', result.data.listUnconfirmedContributions.length)
}) })
.catch((error) => { .catch((error) => {
@ -96,8 +95,6 @@ export default {
this.item = item this.item = item
}, },
updateState(id) { updateState(id) {
console.log('admin updateState', id)
console.log(this.pendingCreations)
this.pendingCreations.find((item) => item.id === id).state = 'IN_PROGRESS' this.pendingCreations.find((item) => item.id === id).state = 'IN_PROGRESS'
}, },
}, },