@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.
- package/esm2020/lib/pages/libraries-page/libraries-page.component.mjs +2 -2
- package/esm2020/lib/pages/setting-list-page/setting-list-page.component.mjs +2 -2
- package/esm2020/projects/component-library/lib/pages/libraries-page/libraries-page.component.mjs +2 -2
- package/esm2020/projects/component-library/lib/pages/setting-list-page/setting-list-page.component.mjs +2 -2
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +2 -2
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +2 -2
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +2 -2
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +2 -2
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -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);
|