Merge pull request #5094 from vvlladd28/bug/leg-light/init-order

[3.3.1] UI: Added check for DOM element existence before calling draw function
This commit is contained in:
Igor Kulikov 2021-08-25 12:38:58 +03:00 committed by GitHub
commit 0182062b5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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