From e8b7591e7c2aa49667a6626be91a51a49fd0324f Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Thu, 28 Oct 2021 19:04:02 +0200 Subject: [PATCH] Show notification on password reset like in profile page instead of closing the dialog --- src/views/users.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/users.js b/src/views/users.js index 052062ddb..42e9bf993 100644 --- a/src/views/users.js +++ b/src/views/users.js @@ -568,7 +568,7 @@ angular.module('Application').controller('UsersController', ['$scope', '$locatio $scope.passwordReset.busy = false; - $('#passwordResetModal').modal('hide'); + Client.notify($translate.instant('profile.passwordResetNotification.title'), $translate.instant('profile.passwordResetNotification.body', { email: $scope.passwordReset.email }), false, 'success'); }); } };