From 147e3c18b921021101c734a584787e9623317f8a Mon Sep 17 00:00:00 2001 From: ogerly Date: Sat, 18 Dec 2021 21:36:40 +0100 Subject: [PATCH] row.detailsShowing clearing, remove console.logs --- admin/src/components/CreationFormular.vue | 4 ---- admin/src/components/UserTable.vue | 4 +++- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/admin/src/components/CreationFormular.vue b/admin/src/components/CreationFormular.vue index d73ea3c81..2074da857 100644 --- a/admin/src/components/CreationFormular.vue +++ b/admin/src/components/CreationFormular.vue @@ -204,8 +204,6 @@ export default { // Die anzahl der Mitglieder aus der Mehrfachschöpfung const i = Object.keys(this.itemsMassCreation).length // hinweis das eine Mehrfachschöpfung ausgeführt wird an (Anzahl der MItgleider an die geschöpft wird) - // eslint-disable-next-line no-console - console.log('SUBMIT CREATION => ' + this.type + ' >> für VIELE ' + i + ' Mitglieder') this.submitObj = [ { item: this.itemsMassCreation, @@ -216,8 +214,6 @@ export default { moderator: this.$store.state.moderator.id, }, ] - // eslint-disable-next-line no-console - console.log('MehrfachSCHÖPFUNG ABSENDEN FÜR >> ' + i + ' Mitglieder') // $store - offene Schöpfungen hochzählen this.$store.commit('openCreationsPlus', i) diff --git a/admin/src/components/UserTable.vue b/admin/src/components/UserTable.vue index 3fba8cc80..bb56c10c5 100644 --- a/admin/src/components/UserTable.vue +++ b/admin/src/components/UserTable.vue @@ -189,10 +189,12 @@ export default { }, methods: { rowDetailsToogle(row) { + if (this.$refs.showing_detals_false) { + row.toggleDetails() + } if (this.$refs.showing_detals_true) { this.$refs.showing_detals_true.click() } - row.toggleDetails() }, overlayShow(bookmarkType, item) { this.overlay = true