| 
						
						
							
								
							
						
						
					 | 
					@ -61,8 +61,8 @@ export class TransactionsTableComponent | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					  > = this.filteredTransactions$.asObservable(); | 
					 | 
					 | 
					  > = this.filteredTransactions$.asObservable(); | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					  public isLoading = true; | 
					 | 
					 | 
					  public isLoading = true; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					  public routeQueryParams: Subscription; | 
					 | 
					 | 
					  public routeQueryParams: Subscription; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					  public searchKeywords: string[] = []; | 
					 | 
					 | 
					 | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					  public searchControl = new FormControl(); | 
					 | 
					 | 
					  public searchControl = new FormControl(); | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					 | 
					 | 
					 | 
					  public searchKeywords: string[] = []; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					  public separatorKeysCodes: number[] = [ENTER, COMMA]; | 
					 | 
					 | 
					  public separatorKeysCodes: number[] = [ENTER, COMMA]; | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					  private allFilteredTransactions: string[]; | 
					 | 
					 | 
					  private allFilteredTransactions: string[]; | 
				
			
			
		
	
	
		
		
			
				
					| 
						
							
								
							
						
						
							
								
							
						
						
					 | 
					@ -98,10 +98,7 @@ export class TransactionsTableComponent | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    }); | 
					 | 
					 | 
					    }); | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					  } | 
					 | 
					 | 
					  } | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					
 | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					  public addKeyword(event: MatChipInputEvent): void { | 
					 | 
					 | 
					  public addKeyword({ input, value }: MatChipInputEvent): void { | 
				
			
			
				
				
			
		
	
		
		
			
				
					 | 
					 | 
					    const input = event.input; | 
					 | 
					 | 
					 | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					    const value = event.value; | 
					 | 
					 | 
					 | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					
 | 
					 | 
					 | 
					 | 
				
			
			
		
	
		
		
	
		
		
			
				
					 | 
					 | 
					    if (value?.trim()) { | 
					 | 
					 | 
					    if (value?.trim()) { | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					      this.searchKeywords.push(value.trim()); | 
					 | 
					 | 
					      this.searchKeywords.push(value.trim()); | 
				
			
			
		
	
		
		
			
				
					 | 
					 | 
					      this.updateFilter(); | 
					 | 
					 | 
					      this.updateFilter(); | 
				
			
			
		
	
	
		
		
			
				
					| 
						
							
								
							
						
						
						
					 | 
					
  |