From 1bec25e8e67094b5e8c9511717576b1938fba12b Mon Sep 17 00:00:00 2001 From: syuilo Date: Wed, 28 Jul 2021 14:45:56 +0900 Subject: [PATCH] =?UTF-8?q?=E3=83=91=E3=82=B9=E3=83=AF=E3=83=BC=E3=83=89?= =?UTF-8?q?=E3=83=AA=E3=82=BB=E3=83=83=E3=83=88=E3=81=97=E3=81=A6=E3=82=82?= =?UTF-8?q?=E6=96=B0=E3=81=97=E3=81=84=E3=83=91=E3=82=B9=E3=83=AF=E3=83=BC?= =?UTF-8?q?=E3=83=89=E3=81=8C=E8=A1=A8=E7=A4=BA=E3=81=95=E3=82=8C=E3=81=AA?= =?UTF-8?q?=E3=81=84=E5=95=8F=E9=A1=8C=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/client/pages/user-info.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/client/pages/user-info.vue b/src/client/pages/user-info.vue index 51bd5016b..503982652 100644 --- a/src/client/pages/user-info.vue +++ b/src/client/pages/user-info.vue @@ -167,13 +167,13 @@ export default defineComponent({ }, async resetPassword() { - os.apiWithDialog('admin/reset-password', { + const { password } = await os.api('admin/reset-password', { userId: this.user.id, - }, undefined, ({ password }) => { - os.dialog({ - type: 'success', - text: this.$t('newPasswordIs', { password }) - }); + }); + + os.dialog({ + type: 'success', + text: this.$t('newPasswordIs', { password }) }); },