fixed minor fallback issue

This commit is contained in:
Timo 2021-05-06 17:52:55 +03:00
parent e2389b4fff
commit 990bc2dfec

View File

@ -33,6 +33,6 @@ export class AnnotationIconComponent implements OnInit {
}
public get backgroundColor() {
return this.color || this.dictType.hexColor;
return this.color || this.dictType?.hexColor;
}
}