パスワードリセットしても新しいパスワードが表示されない問題を修正

This commit is contained in:
syuilo 2021-07-28 14:45:56 +09:00
parent f220e4183f
commit 1bec25e8e6

View file

@ -167,13 +167,13 @@ export default defineComponent({
}, },
async resetPassword() { async resetPassword() {
os.apiWithDialog('admin/reset-password', { const { password } = await os.api('admin/reset-password', {
userId: this.user.id, userId: this.user.id,
}, undefined, ({ password }) => { });
os.dialog({
type: 'success', os.dialog({
text: this.$t('newPasswordIs', { password }) type: 'success',
}); text: this.$t('newPasswordIs', { password })
}); });
}, },