パスワードリセットしても新しいパスワードが表示されない問題を修正
This commit is contained in:
parent
f220e4183f
commit
1bec25e8e6
|
@ -167,14 +167,14 @@ 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({
|
os.dialog({
|
||||||
type: 'success',
|
type: 'success',
|
||||||
text: this.$t('newPasswordIs', { password })
|
text: this.$t('newPasswordIs', { password })
|
||||||
});
|
});
|
||||||
});
|
|
||||||
},
|
},
|
||||||
|
|
||||||
async toggleSilence(v) {
|
async toggleSilence(v) {
|
||||||
|
|
Loading…
Reference in New Issue