mirror of
https://github.com/moodle/moodle.git
synced 2025-05-07 00:36:01 +02:00
Merge branch 'MDL-73205' of https://github.com/paulholden/moodle
This commit is contained in:
commit
312bfce30f
2
lib/form/amd/build/dynamicform.min.js
vendored
2
lib/form/amd/build/dynamicform.min.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
lib/form/amd/build/modalform.min.js
vendored
2
lib/form/amd/build/modalform.min.js
vendored
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));
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user