Merge branch 'MDL-73205' of https://github.com/paulholden/moodle
This commit is contained in:
+1
-1
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Vendored
+1
-1
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -248,7 +248,7 @@ export default class DynamicForm {
|
||||
this.getBody(formData.toString())
|
||||
.then(this.updateForm)
|
||||
.then(pendingPromise.resolve)
|
||||
.catch(this.onSubmitError);
|
||||
.catch(exception => this.onSubmitError(exception));
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -371,6 +371,6 @@ export default class DynamicForm {
|
||||
}
|
||||
return null;
|
||||
})
|
||||
.catch(this.onSubmitError);
|
||||
.catch(exception => this.onSubmitError(exception));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -385,7 +385,7 @@ export default class ModalForm {
|
||||
}
|
||||
return null;
|
||||
})
|
||||
.catch(this.onSubmitError);
|
||||
.catch(exception => this.onSubmitError(exception));
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user