Fixed an issue where the converter wasn't running on the first construct.
This commit is contained in:
parent
23f8fa5b72
commit
4e0bb96747
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user