reactronic 0.24.115 → 0.24.116
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -438,7 +438,6 @@ function mountOrRemountIfNecessary(node) {
|
|
|
438
438
|
}
|
|
439
439
|
function updateNow(seat) {
|
|
440
440
|
const node = seat.instance;
|
|
441
|
-
const el = node.element;
|
|
442
441
|
if (node.stamp >= 0) {
|
|
443
442
|
let result = undefined;
|
|
444
443
|
runInside(seat, () => {
|
|
@@ -449,7 +448,7 @@ function updateNow(seat) {
|
|
|
449
448
|
node.numerator = 0;
|
|
450
449
|
node.children.beginMerge();
|
|
451
450
|
const driver = node.driver;
|
|
452
|
-
result = driver.update(
|
|
451
|
+
result = driver.update(node);
|
|
453
452
|
if (result instanceof Promise)
|
|
454
453
|
result.then(v => { runUpdateNestedTreesThenDo(undefined, NOP); return v; }, e => { console.log(e); runUpdateNestedTreesThenDo(e !== null && e !== void 0 ? e : new Error('unknown error'), NOP); });
|
|
455
454
|
else
|