Browse Source
			
			
			Bugfix/add missing CommonModule in tags selector component (#4335)
			
				* Add missing CommonModule (async pipe)
			
			
				pull/4334/head^2
			
			
		 
		
			
				
					
						
						Thomas Kaul
					
					9 months ago
					
						
							committed by
							
								
								GitHub
							
						 
					
				 
				
			 
		 
		
			
				
					
					No known key found for this signature in database
					
						
							GPG Key ID: B5690EEEBB952194
						
					
				
			
		
		
		
	
		
			
				 1 changed files with 
2 additions and 
0 deletions
			 
			
		 
		
			
				- 
					
					
					 
					libs/ui/src/lib/tags-selector/tags-selector.component.ts
				
 
			
		
		
			
			
			
			
			
			
				
				
					
						
							
								
									
	
		
		
			
				
					| 
						
						
						
					 | 
					@ -1,4 +1,5 @@ | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					import { COMMA, ENTER } from '@angular/cdk/keycodes'; | 
					 | 
					 | 
					import { COMMA, ENTER } from '@angular/cdk/keycodes'; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					import { CommonModule } from '@angular/common'; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					import { | 
					 | 
					 | 
					import { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					  ChangeDetectionStrategy, | 
					 | 
					 | 
					  ChangeDetectionStrategy, | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					  Component, | 
					 | 
					 | 
					  Component, | 
				
			
			
		
	
	
		
		
			
				
					| 
						
							
								
							
						
						
							
								
							
						
						
					 | 
					@ -27,6 +28,7 @@ import { BehaviorSubject, Subject, takeUntil } from 'rxjs'; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					@Component({ | 
					 | 
					 | 
					@Component({ | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					  changeDetection: ChangeDetectionStrategy.OnPush, | 
					 | 
					 | 
					  changeDetection: ChangeDetectionStrategy.OnPush, | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					  imports: [ | 
					 | 
					 | 
					  imports: [ | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					    CommonModule, | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    FormsModule, | 
					 | 
					 | 
					    FormsModule, | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    MatAutocompleteModule, | 
					 | 
					 | 
					    MatAutocompleteModule, | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    MatChipsModule, | 
					 | 
					 | 
					    MatChipsModule, | 
				
			
			
		
	
	
		
		
			
				
					| 
						
							
								
							
						
						
						
					 | 
					
  |