mirror of
https://github.com/element-hq/element-web
synced 2024-11-22 17:25:50 +03:00
Pass false to onFinished from BaseDialog
Everywhere else, onFinished takes a boolean indicating whether the dialog was confirmed on cancelled, and had function that were expecting this variable and getting undefined.
This commit is contained in:
parent
f70096b8fa
commit
db1401f484
1 changed files with 5 additions and 2 deletions
|
@ -36,6 +36,9 @@ export default React.createClass({
|
|||
|
||||
propTypes: {
|
||||
// onFinished callback to call when Escape is pressed
|
||||
// Take a boolean which is true is the dialog was dismissed
|
||||
// with a positive / confirm action or false if it was
|
||||
// cancelled (from BaseDialog, this is always false).
|
||||
onFinished: PropTypes.func.isRequired,
|
||||
|
||||
// called when a key is pressed
|
||||
|
@ -77,12 +80,12 @@ export default React.createClass({
|
|||
if (e.keyCode === KeyCode.ESCAPE) {
|
||||
e.stopPropagation();
|
||||
e.preventDefault();
|
||||
this.props.onFinished();
|
||||
this.props.onFinished(false);
|
||||
}
|
||||
},
|
||||
|
||||
_onCancelClick: function(e) {
|
||||
this.props.onFinished();
|
||||
this.props.onFinished(false);
|
||||
},
|
||||
|
||||
render: function() {
|
||||
|
|
Loading…
Reference in a new issue