@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
|
@@ -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);
|