@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.
@@ -6181,7 +6181,7 @@ class SettingListPageComponent {
6181
6181
  this.filteredCardList = this.model.cardList;
6182
6182
  }
6183
6183
  keywordSearch(keyword) {
6184
- this.filteredCardList = this.model.cardList.filter((card) => card.title.toLowerCase().includes(keyword));
6184
+ this.filteredCardList = this.model.cardList.filter((card) => card.title.toLowerCase().includes(keyword.toLowerCase()));
6185
6185
  }
6186
6186
  onCardClick(card) {
6187
6187
  this.cardClicked.emit(card);
@@ -6892,7 +6892,7 @@ class LibrariesPageComponent {
6892
6892
  this.filteredCardList = this.model.cardList;
6893
6893
  }
6894
6894
  keywordSearch(keyword) {
6895
- this.filteredCardList = this.model.cardList.filter((card) => card.title.toLowerCase().includes(keyword));
6895
+ this.filteredCardList = this.model.cardList.filter((card) => card.title.toLowerCase().includes(keyword.toLowerCase()));
6896
6896
  }
6897
6897
  onCardClick(card) {
6898
6898
  this.cardClicked.emit(card);