mirror of
https://github.com/nasa/openmct.git
synced 2024-12-24 15:26:39 +00:00
[Edit] Refer to correct variable
...when clearing transactions after a restartTransaction
This commit is contained in:
parent
b60e94bce4
commit
1f525160e0
@ -153,7 +153,7 @@ define(
|
|||||||
|
|
||||||
return function () {
|
return function () {
|
||||||
while (oldOnCancels.length > 0) {
|
while (oldOnCancels.length > 0) {
|
||||||
var onCancel = this.onCancels.pop();
|
var onCancel = oldOnCancels.pop();
|
||||||
try {
|
try {
|
||||||
onCancel();
|
onCancel();
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
Loading…
Reference in New Issue
Block a user