gatsby-matrix-theme 7.2.1 → 7.2.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
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## [7.2.2](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v7.2.1...v7.2.2) (2022-10-10)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* remove typo ([76710da](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/76710daa53e5dd1d627168a7c451270fede4b868))
|
|
7
|
+
* remove typo ([d8fa4f5](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/d8fa4f591d25577f9c3b9fe4b512694bf5f3a3cf))
|
|
8
|
+
* update core version ([4509427](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/45094270fb9d315b34a4a2ef86afcfd142f83cf1))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
* Merge branch 'update--core-version' into 'master' ([531d3f8](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/531d3f8bdb81b1e4709483391281d321db33f76c))
|
|
12
|
+
* Merge branch 'remove-typo' into 'master' ([2738741](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/commit/27387414dcf2579f4f4070977e1b640c51f75d54))
|
|
13
|
+
|
|
1
14
|
## [7.2.1](https://git.ilcd.rocks/team-floyd/themes/matrix-theme/compare/v7.2.0...v7.2.1) (2022-10-10)
|
|
2
15
|
|
|
3
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gatsby-matrix-theme",
|
|
3
|
-
"version": "7.2.
|
|
3
|
+
"version": "7.2.2",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"description": "Matrix Theme NPM Package",
|
|
6
6
|
"author": "",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"gatsby": "^4.20.0",
|
|
27
|
-
"gatsby-core-theme": "12.0.
|
|
27
|
+
"gatsby-core-theme": "12.0.3",
|
|
28
28
|
"gatsby-plugin-sharp": "^4.10.2",
|
|
29
29
|
"gatsby-plugin-sitemap": "^3.3.0",
|
|
30
30
|
"gatsby-transformer-sharp": "^4.10.0",
|
|
@@ -80,7 +80,7 @@ const ModuleTitle = ({ module, viewMoreIcon = <FaAngleRight />, pageContext = nu
|
|
|
80
80
|
|
|
81
81
|
const template = pageContext && pageContext?.page?.template;
|
|
82
82
|
const type = pageContext && pageContext?.page?.type;
|
|
83
|
-
const seeMore = module?.see_more_link;
|
|
83
|
+
const seeMore = module?.see_more_link?.title;
|
|
84
84
|
|
|
85
85
|
return module.module_title ||
|
|
86
86
|
(module.title && (module.name === 'cards' || module.name === 'top_list')) ? (
|