Fixed an issue where the converter wasn't running on the first construct.

This commit is contained in:
MattMo 2023-12-11 16:58:18 -08:00
parent 23f8fa5b72
commit 4e0bb96747

View File

@ -2934,6 +2934,17 @@ class converter extends IgniteTemplate {
parent = this.element.parentElement;
}
//If we haven't converted the value yet, do it now
if (!this.converted) {
if (Array.isArray(this.value) && this.value.length > 0 && this.value[0] instanceof IgniteProperty) {
this.converted = this.converter ? this.converter(...this.value.getPropertyValues()) : this.value.getPropertyValues();
} else if (this.value instanceof IgniteProperty) {
this.converted = this.converter ? this.converter(this.value.value) : this.value.value;
} else {
this.converted = this.converter ? this.converter(this.value) : this.value;
}
}
//Construct the converted value
if (this.converted instanceof IgniteTemplate) {
this.converted.construct(parent, this.element);