mirror of
https://github.com/nasa/openmct.git
synced 2025-02-20 17:33:23 +00:00
[Persistence] Invoke parent constructor
This commit is contained in:
parent
73d10ab093
commit
353c24c70e
@ -22,6 +22,7 @@
|
||||
define(['./Transaction'], function (Transaction) {
|
||||
function NestedTransaction(parent) {
|
||||
this.parent = parent;
|
||||
Transaction.call(this, parent.$log);
|
||||
}
|
||||
|
||||
NestedTransaction.prototype = Object.create(Transaction.prototype);
|
||||
|
Loading…
x
Reference in New Issue
Block a user