removed undefined from color

This commit is contained in:
Edi Cziszter 2022-02-14 14:01:26 +02:00
parent 5a0e5accb7
commit d4b1bb5c07

View File

@ -7,5 +7,5 @@ import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
changeDetection: ChangeDetectionStrategy.OnPush, changeDetection: ChangeDetectionStrategy.OnPush,
}) })
export class SmallChipComponent { export class SmallChipComponent {
@Input() color: string | undefined; @Input() color!: string;
} }