Skip to content
Snippets Groups Projects
Commit 666b2590 authored by Mohammad Alayoub's avatar Mohammad Alayoub
Browse files

fixed search with upper case

parent 081fc4e6
Branches
Tags
No related merge requests found
...@@ -192,7 +192,7 @@ export class TopicCloudAdministrationComponent implements OnInit { ...@@ -192,7 +192,7 @@ export class TopicCloudAdministrationComponent implements OnInit {
this.searchMode = false; this.searchMode = false;
} else{ } else{
this.filteredKeywords = this.keywords.filter(keyword => this.filteredKeywords = this.keywords.filter(keyword =>
keyword.keyword.toLowerCase().includes(this.searchedKeyword) keyword.keyword.toLowerCase().includes(this.searchedKeyword.toLowerCase())
); );
this.searchMode = true; this.searchMode = true;
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment