Convert Info notification to Success & Add an Info notification

This commit is contained in:
Bubka
2023-10-26 08:44:29 +02:00
parent 8c23aa884f
commit 910e0bc830
10 changed files with 19 additions and 15 deletions

View File

@ -23,7 +23,7 @@
watch(() => user.preferences.useWebauthnOnly, () => {
userService.updatePreference('useWebauthnOnly', user.preferences.useWebauthnOnly).then(response => {
notify.info({ text: trans('settings.forms.setting_saved') })
notify.success({ text: trans('settings.forms.setting_saved') })
})
})
@ -71,7 +71,7 @@
user.preferences.useWebauthnOnly = false
}
notify.info({ text: trans('auth.webauthn.device_revoked') })
notify.success({ text: trans('auth.webauthn.device_revoked') })
});
}
}