diff --git a/frontend/src/app/components/checkin/check-in-form-metric/metric-check-in-directive.ts b/frontend/src/app/components/checkin/check-in-form-metric/metric-check-in-directive.ts index 33e2bb2d20..55375f93c5 100644 --- a/frontend/src/app/components/checkin/check-in-form-metric/metric-check-in-directive.ts +++ b/frontend/src/app/components/checkin/check-in-form-metric/metric-check-in-directive.ts @@ -16,7 +16,7 @@ export class MetricCheckInDirective implements ControlValueAccessor { protected readonly CHAR_REGEX = /[^0-9.]/g; writeValue(): void { - // does not need to be implemented because the display value does not need to be modified + // does not need to be implemented because the display value does not need to be modified comment is here to make linter happy } registerOnChange(fn: (value: number | null) => void): void { @@ -24,7 +24,7 @@ export class MetricCheckInDirective implements ControlValueAccessor { } registerOnTouched(): void { - // does not need to be implemented + // does not need to be implemented comment is here to make linter happy } @HostListener('input', ['$event.target.value'])