mirror of
https://github.com/nasa/openmct.git
synced 2025-01-05 04:44:14 +00:00
[Persistence] Address refactoring error
...caught by unit tests
This commit is contained in:
parent
947b54555a
commit
0833674b91
@ -116,7 +116,7 @@ define(
|
|||||||
* @returns {number} size of the active transaction
|
* @returns {number} size of the active transaction
|
||||||
*/
|
*/
|
||||||
TransactionService.prototype.size = function () {
|
TransactionService.prototype.size = function () {
|
||||||
return this.isActive() ? this.activeTransaction.size() : 0;
|
return this.isActive() ? this.activeTransaction().size() : 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
return TransactionService;
|
return TransactionService;
|
||||||
|
Loading…
Reference in New Issue
Block a user