gatsby-core-theme 44.7.0 → 44.7.1
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/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/src/resolver/modules.mjs +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [44.7.1](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.7.0...v44.7.1) (2025-11-13)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* process faq ([4c47357](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/4c473570c2d0beeed83203c3df210886ec14dadb))
|
|
7
|
+
|
|
1
8
|
# [44.7.0](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.6.5...v44.7.0) (2025-11-11)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/resolver/modules.mjs
CHANGED
|
@@ -283,7 +283,8 @@ export function processCardsV2(
|
|
|
283
283
|
prefilledFilters?.providers;
|
|
284
284
|
|
|
285
285
|
const moduleSelectedTypes =
|
|
286
|
-
(module?.cards_selector_filters &&
|
|
286
|
+
(module?.cards_selector_filters &&
|
|
287
|
+
module?.cards_selector_filters.types) ||
|
|
287
288
|
prefilledFilters?.types;
|
|
288
289
|
|
|
289
290
|
const limit =
|
|
@@ -602,7 +603,6 @@ export function processFaq(module = {}, content, relationData, previewPageID) {
|
|
|
602
603
|
)) ||
|
|
603
604
|
""
|
|
604
605
|
);
|
|
605
|
-
item.answer = trailingSlash(content ? content[item.answer] : "");
|
|
606
606
|
});
|
|
607
607
|
}
|
|
608
608
|
|