Skip to content

Commit

Permalink
update comments so its clear that linter needs them
Browse files Browse the repository at this point in the history
  • Loading branch information
nevio18324 committed Dec 23, 2024
1 parent dbe21ab commit 8fad09e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ 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 {
this.onChange = fn;
}

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'])
Expand Down

0 comments on commit 8fad09e

Please sign in to comment.