From 63ed3a42f94569bee8c4630b941b8d5baa84c6a6 Mon Sep 17 00:00:00 2001 From: MattMo Date: Fri, 21 Jul 2023 10:24:06 -0700 Subject: [PATCH] Fixed an issue where the text constructor wasn't handling the rendering state when call the converter. --- ignite-template.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ignite-template.js b/ignite-template.js index 3108468..c09e0c0 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -2094,6 +2094,8 @@ class text extends IgniteTemplate { constructor(text, converter) { super(); + IgniteRendering.push(); + if (text instanceof IgniteProperty) { this._callbacks.push(text.attachOnChange((oldValue, newValue) => this.onTextChanged(converter != null ? converter(newValue) : newValue))); this._callbacks.push(text.attachOnPush((list, items) => this.onTextChanged(converter != null ? converter(list) : null))); @@ -2125,6 +2127,8 @@ class text extends IgniteTemplate { } else { this._text = (converter != null ? converter(text) : text); } + + IgniteRendering.pop(); } construct(parent, sibling) {