Skip to content
This repository has been archived by the owner on Dec 27, 2023. It is now read-only.

Commit

Permalink
fix(Tinebase): hide loadmask after second Pw wrong
Browse files Browse the repository at this point in the history
* hide loadmask for new try to change pw

Change-Id: I5896b19006ecefb28a4fbae004008cdfa73e5c7c
Reviewed-on: http://gerrit.tine20.com/customers/18357
Reviewed-by: Philipp Schüle <p.schuele@metaways.de>
Tested-by: Philipp Schüle <p.schuele@metaways.de>
  • Loading branch information
Christian Feitl authored and pschuele committed Nov 3, 2020
1 parent 6abe150 commit bc43fe2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tine20/Tinebase/js/PasswordChangeDialog.js
Expand Up @@ -123,11 +123,12 @@ Tine.Tinebase.PasswordChangeDialog = Ext.extend(Ext.Window, {
scope: this
});
} else {
this.loadMask.hide();
Ext.MessageBox.show({
title: i18n._('Failure'),
msg: String.format(i18n._('{0} mismatch, please correct.'), this.passwordLabel),
buttons: Ext.MessageBox.OK,
icon: Ext.MessageBox.ERROR
icon: Ext.MessageBox.ERROR
});
}
}
Expand Down

0 comments on commit bc43fe2

Please sign in to comment.