diff --git a/ignite-template.js b/ignite-template.js index afc212a..be918e5 100644 --- a/ignite-template.js +++ b/ignite-template.js @@ -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);