Browse Source

Bugfix/add missing CommonModule in tags selector component (#4335)

* Add missing CommonModule (async pipe)
pull/4334/head^2
Thomas Kaul 1 month ago
committed by GitHub
parent
commit
57957a7b30
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      libs/ui/src/lib/tags-selector/tags-selector.component.ts

2
libs/ui/src/lib/tags-selector/tags-selector.component.ts

@ -1,4 +1,5 @@
import { COMMA, ENTER } from '@angular/cdk/keycodes';
import { CommonModule } from '@angular/common';
import {
ChangeDetectionStrategy,
Component,
@ -27,6 +28,7 @@ import { BehaviorSubject, Subject, takeUntil } from 'rxjs';
@Component({
changeDetection: ChangeDetectionStrategy.OnPush,
imports: [
CommonModule,
FormsModule,
MatAutocompleteModule,
MatChipsModule,

Loading…
Cancel
Save