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
No related merge requests found
......@@ -192,7 +192,7 @@ export class TopicCloudAdministrationComponent implements OnInit {
this.searchMode = false;
} else{
this.filteredKeywords = this.keywords.filter(keyword =>
keyword.keyword.toLowerCase().includes(this.searchedKeyword)
keyword.keyword.toLowerCase().includes(this.searchedKeyword.toLowerCase())
);
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