Skip to content

Commit

Permalink
feature/GH-1220: change the reset password success message
Browse files Browse the repository at this point in the history
  • Loading branch information
WeizhengSap committed Feb 14, 2019
1 parent 8070b7b commit db7ca81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ describe('', () => {
});
const completion1 = new fromActions.ResetPasswordSuccess();
const completion2 = new AddMessage({
text: 'Password Reset Successfully',
text: 'Success! You can now login using your new password.',
type: GlobalMessageType.MSG_TYPE_CONFIRMATION
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export class ResetPasswordEffects {
switchMap(() => [
new fromActions.ResetPasswordSuccess(),
new AddMessage({
text: 'Password Reset Successfully',
text: 'Success! You can now login using your new password.',
type: GlobalMessageType.MSG_TYPE_CONFIRMATION
})
]),
Expand Down

0 comments on commit db7ca81

Please sign in to comment.