gatsby-matrix-theme 3.2.12 → 3.2.13

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 CHANGED
@@ -1,3 +1,13 @@
1
+ ## [3.2.13](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v3.2.12...v3.2.13) (2022-01-18)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * minor fixes ([0082bdf](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/0082bdf105de208b8987f079726f6bf7d8608835))
7
+
8
+
9
+ * Merge branch 'master' of git.ilcd.rocks:team-floyd/themes/matrix-theme ([dccc488](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/dccc488f216ebe115db8c4189b102ea028b5b290))
10
+
1
11
  ## [3.2.12](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v3.2.11...v3.2.12) (2022-01-18)
2
12
 
3
13
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-matrix-theme",
3
- "version": "3.2.12",
3
+ "version": "3.2.13",
4
4
  "main": "index.js",
5
5
  "description": "Matrix Theme NPM Package",
6
6
  "author": "",
@@ -41,7 +41,7 @@ function Anchor({ module: { items }, headerOffset = 80, isFixed = false, icon =
41
41
  return (
42
42
  <div id="faq-container">
43
43
  <div className={isFixedMenu && styles.isFixed}>
44
- <div className={styles.anchor} gtmClass="anchor-carousel-gtm">
44
+ <div className={styles.anchor}>
45
45
  {items?.map((anchor) => (
46
46
  <a
47
47
  className={`${styles.link} anchor-carousel-gtm anchor-menu-gtm`}
@@ -73,6 +73,14 @@ const Head = ({ page = {}, siteInfo }) => {
73
73
  <meta name="og:type" content={page.path === '/' ? 'website' : 'article'} />
74
74
  <meta name="og:image" content={pageImage} />
75
75
  <meta name="og:url" content={getUrl(page.path)} />
76
+ <meta
77
+ property="og:locale"
78
+ content={
79
+ getLanguage(page.language) === 'en' || getLanguage(page.language) === 'en-za'
80
+ ? 'en_GB'
81
+ : getLanguage(page.language)
82
+ }
83
+ />
76
84
 
77
85
  {schemaGenerator(page, pageImage).map(
78
86
  (schema) =>