Skip to content

Commit bb561b4

Browse files
committed
parse bindings of bound nodes
1 parent 8e625b9 commit bb561b4

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"description": "Base Custom Webcomponent",
33
"name": "@node-projects/base-custom-webcomponent",
4-
"version": "0.26.0",
4+
"version": "0.26.1",
55
"type": "module",
66
"main": "./dist/index.js",
77
"author": "",

src/BaseCustomWebComponent.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,8 @@ export class BaseCustomWebComponentNoAttachedTemplate extends HTMLElement {
466466
for (let c = node.firstChild; c !== null; c = node.firstChild) {
467467
node.removeChild(c);
468468
}
469-
(<Element>node).appendChild(value)
469+
this._bindingsInternalParse(value, repeatBindingItems, true, host, context);
470+
(<Element>node).appendChild(value);
470471
} else {
471472
if (property[0] === '$') {
472473
if (!value && noNull)

0 commit comments

Comments
 (0)