@symphony-talent/component-library 4.82.0 → 4.83.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6184,7 +6184,7 @@ class SettingListPageComponent {
6184
6184
  this.filteredCardList = this.model.cardList;
6185
6185
  }
6186
6186
  keywordSearch(keyword) {
6187
- this.filteredCardList = this.model.cardList.filter((card) => card.title.toLowerCase().includes(keyword));
6187
+ this.filteredCardList = this.model.cardList.filter((card) => card.title.toLowerCase().includes(keyword.toLowerCase()));
6188
6188
  }
6189
6189
  onCardClick(card) {
6190
6190
  this.cardClicked.emit(card);
@@ -6896,7 +6896,7 @@ class LibrariesPageComponent {
6896
6896
  this.filteredCardList = this.model.cardList;
6897
6897
  }
6898
6898
  keywordSearch(keyword) {
6899
- this.filteredCardList = this.model.cardList.filter((card) => card.title.toLowerCase().includes(keyword));
6899
+ this.filteredCardList = this.model.cardList.filter((card) => card.title.toLowerCase().includes(keyword.toLowerCase()));
6900
6900
  }
6901
6901
  onCardClick(card) {
6902
6902
  this.cardClicked.emit(card);