UI: Added check for DOM element existence before calling draw function

This commit is contained in:
Vladyslav_Prykhodko 2021-08-17 10:27:55 +03:00
parent 327607e86d
commit 314dbed121

View File

@ -73,7 +73,7 @@ export class LedLightComponent implements OnInit, AfterViewInit, OnChanges {
for (const propName of Object.keys(changes)) {
const change = changes[propName];
if (!change.firstChange && change.currentValue !== change.previousValue) {
if (propName === 'enabled') {
if (propName === 'enabled' && this.circleElement) {
this.draw();
} else if (propName === 'size') {
this.update();