gatsby-core-theme 30.0.64 → 30.0.65

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,10 @@
1
+ ## [30.0.65](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.64...v30.0.65) (2024-01-29)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * added check to see if read more content is empty ([cddb175](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/cddb17507112e9adfdf382e85cfb1a900e4b6340))
7
+
1
8
  ## [30.0.64](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v30.0.63...v30.0.64) (2024-01-25)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gatsby-core-theme",
3
- "version": "30.0.64",
3
+ "version": "30.0.65",
4
4
  "description": "Gatsby Theme NPM Package",
5
5
  "author": "",
6
6
  "license": "ISC",
@@ -54,7 +54,7 @@ const Content = ({
54
54
  </div>
55
55
  );
56
56
 
57
- return show_more_enabled !== '1' ? (
57
+ return show_more_enabled !== '1' || module.show_more_content == null ? (
58
58
  mainContent(module.value)
59
59
  ) : (
60
60
  <>