gatsby-core-theme 18.0.0 → 18.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
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
## [18.0.2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v18.0.1...v18.0.2) (2023-01-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add logo for software provider ([641e112](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/641e11206396d12a1d97d6f7e71ee3fd2b950d9e))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
* Merge branch 'tm-3261-add-logos-conf' into 'master' ([80e8eb2](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/80e8eb26b572ec50c141633c539f7e91766317f8))
|
|
10
|
+
|
|
11
|
+
## [18.0.1](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v18.0.0...v18.0.1) (2023-01-12)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* content show more ([bd44d9f](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/bd44d9f8b6e5f4af2127a59b30922e41755e303a))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
* Merge branch 'content-fix' into 'master' ([b4e1538](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/b4e1538559c30ce166a7a84df18b029d10c4f1d1))
|
|
20
|
+
|
|
1
21
|
# [18.0.0](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v17.0.10...v18.0.0) (2023-01-12)
|
|
2
22
|
|
|
3
23
|
|
package/package.json
CHANGED
|
@@ -79,7 +79,9 @@ const Content = ({ module, isHomepageFirstModule = false, isModuleIntroduction =
|
|
|
79
79
|
setShowMore(!showMore);
|
|
80
80
|
};
|
|
81
81
|
|
|
82
|
-
|
|
82
|
+
// eslint-disable-next-line no-nested-ternary
|
|
83
|
+
const conditionalContent =
|
|
84
|
+
!showMore && module.show_more_content ? module.value + module.show_more_content : module.value;
|
|
83
85
|
|
|
84
86
|
return (
|
|
85
87
|
<>
|
|
@@ -68,7 +68,13 @@ export const pickRelationKeys = {
|
|
|
68
68
|
'thumbnail_filename',
|
|
69
69
|
'thumbnail_filename_object',
|
|
70
70
|
],
|
|
71
|
-
software_provider: [
|
|
71
|
+
software_provider: [
|
|
72
|
+
'logo_filename_object',
|
|
73
|
+
'logo_filename',
|
|
74
|
+
'games_count',
|
|
75
|
+
'name',
|
|
76
|
+
'standardised_logo_filename_object',
|
|
77
|
+
],
|
|
72
78
|
payment_method: [
|
|
73
79
|
'logo_filename_object',
|
|
74
80
|
'logo_filename',
|