Added null check to props.
This commit is contained in:
parent
b353045019
commit
1bc054903c
@ -171,7 +171,9 @@ class IgniteElement extends HTMLElement {
|
||||
* Sets all the property values on this element.
|
||||
*/
|
||||
setProperties(props) {
|
||||
Object.keys(props).forEach(name => this[name] = props[name]);
|
||||
if (props) {
|
||||
Object.keys(props).forEach(name => this[name] = props[name]);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user