Fixed a bug where on a class change we didn't check to see if the element existed.

This commit is contained in:
MattMo 2023-07-23 22:05:00 -07:00
parent 63ed3a42f9
commit e4602b710d

View File

@ -1378,11 +1378,13 @@ class IgniteTemplate {
//For any classes that are missing on the element, add them. If we have duplicates this
//can happen.
this._classes.forEach((cl) => {
if (!this.element.classList.contains(cl)) {
this.element.classList.add(cl);
}
});
if (this.element) {
this._classes.forEach((cl) => {
if (!this.element.classList.contains(cl)) {
this.element.classList.add(cl);
}
});
}
}
/**