gatsby-core-theme 34.0.1 → 34.0.2
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/helpers/processor/index.mjs +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [34.0.2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v34.0.1...v34.0.2) (2024-07-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* placeholders fix ([6808074](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/68080746b4e378ada45bb8139de2ecbc3db9aa29))
|
|
7
|
+
|
|
1
8
|
## [34.0.1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v34.0.0...v34.0.1) (2024-07-10)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
|
@@ -100,8 +100,7 @@ export function transform(response) {
|
|
|
100
100
|
}
|
|
101
101
|
|
|
102
102
|
const savedModules = {};
|
|
103
|
-
export function processSections(sections, skipPost = false, page, translations, markets) {
|
|
104
|
-
const siteName = page && page.siteInfo && page.siteInfo.site_name;
|
|
103
|
+
export function processSections(sections, skipPost = false, page, translations, markets, siteName) {
|
|
105
104
|
// pagedId we will use it just on operator review pages
|
|
106
105
|
const pageId = page ? page.id : null;
|
|
107
106
|
const relationData = page && page.relation;
|
|
@@ -482,7 +481,8 @@ export default {
|
|
|
482
481
|
true,
|
|
483
482
|
null,
|
|
484
483
|
translations,
|
|
485
|
-
data.site_markets
|
|
484
|
+
data.site_markets,
|
|
485
|
+
data.general.site_name
|
|
486
486
|
);
|
|
487
487
|
}
|
|
488
488
|
|
|
@@ -527,7 +527,8 @@ export default {
|
|
|
527
527
|
false,
|
|
528
528
|
page,
|
|
529
529
|
translations,
|
|
530
|
-
data.site_markets
|
|
530
|
+
data.site_markets,
|
|
531
|
+
data.general.site_name
|
|
531
532
|
),
|
|
532
533
|
});
|
|
533
534
|
}
|