From 829e245b9fe4dbcdbc9bd79208480aa0aa3c7b62 Mon Sep 17 00:00:00 2001 From: lesion Date: Mon, 18 Jul 2022 12:03:40 +0200 Subject: [PATCH] remove confirm link in user/admin panel --- components/admin/Users.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/components/admin/Users.vue b/components/admin/Users.vue index 625b8b3f..ac099d72 100644 --- a/components/admin/Users.vue +++ b/components/admin/Users.vue @@ -38,7 +38,6 @@ v-container v-icon(v-if='item.is_active' color='success' v-text='mdiCheck') v-icon(v-else color='warning' v-text='mdiClose') template(v-slot:item.actions='{item}') - v-btn(v-if='item.recover_code' text small :to='`/user_confirm/${item.recover_code}`') {{$t('common.confirm')}} v-btn(text small @click='toggle(item)' :color='item.is_active?"warning":"success"') {{item.is_active?$t('common.disable'):$t('common.enable')}} v-btn(text small @click='toggleAdmin(item)'