Fixed an issue where the text constructor wasn't handling the rendering state when call the converter.

This commit is contained in:
MattMo 2023-07-21 10:24:06 -07:00
parent 7905758894
commit 63ed3a42f9

View File

@ -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) {