Skip to content

Commit 43343af

Browse files
committed
repaired broken destructuring
SQUASHED: AUTO-COMMIT-src-client-reactive-reactive-jsx-ui-aexpr.js,
1 parent b728e9e commit 43343af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client/reactive/reactive-jsx/ui-aexpr.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function removeObsoleteListeners() {
1717
// `this` is an ActiveExpression
1818
export function toDOMNode(builder = x => x) {
1919
const { value } = this.evaluateToCurrentValue();
20-
let currentNode = builder(value.value);
20+
let currentNode = builder(value);
2121

2222
function updateDOMNode(val) {
2323
// lively.notify("change aexpr result", val)

0 commit comments

Comments
 (0)