gatsby-core-theme 18.0.24 → 18.0.26
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.26](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v18.0.25...v18.0.26) (2023-03-24)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* exclude coming soon from cards ([591b3f4](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/591b3f4e3a32443ee4a32a45335b450cc1f15c7e))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
* Merge branch 'tm-3384-cards-filter' into 'master' ([61ca810](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/61ca810689568b02a0dcd8432beafe474cd4f741))
|
|
10
|
+
|
|
11
|
+
## [18.0.25](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v18.0.24...v18.0.25) (2023-03-23)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* comparison table shift operator ([ec1a40c](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/ec1a40cc97b39c08b2cdc662acfc9a42fe8377cd))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
* Merge branch 'master' of git.ilcd.rocks:team-floyd/themes/gatsby-themes ([ea91873](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/commit/ea9187347bb9d5041d82736e5809b84330d3266e))
|
|
20
|
+
|
|
1
21
|
## [18.0.24](https://git.ilcd.rocks/team-floyd/themes/gatsby-themes/compare/v18.0.23...v18.0.24) (2023-03-21)
|
|
2
22
|
|
|
3
23
|
|
package/package.json
CHANGED
|
@@ -11,11 +11,11 @@ export default {
|
|
|
11
11
|
'sporttheme.com': ['cards', 'cards_v2'],
|
|
12
12
|
},
|
|
13
13
|
filter_cards_modules: {
|
|
14
|
-
'irishluck.ie': ['inactive', 'blacklisted'],
|
|
15
|
-
'norskespilleautomater.com': ['inactive', 'blacklisted'],
|
|
16
|
-
'playcasino.co.za': ['inactive', 'blacklisted'],
|
|
17
|
-
'onlinegamblingsa.co.za': ['inactive', 'blacklisted'],
|
|
18
|
-
'onlinegamblingsa.com': ['inactive', 'blacklisted'],
|
|
14
|
+
'irishluck.ie': ['inactive', 'blacklisted', 'coming_soon'],
|
|
15
|
+
'norskespilleautomater.com': ['inactive', 'blacklisted', 'coming_soon'],
|
|
16
|
+
'playcasino.co.za': ['inactive', 'blacklisted', 'coming_soon'],
|
|
17
|
+
'onlinegamblingsa.co.za': ['inactive', 'blacklisted', 'coming_soon'],
|
|
18
|
+
'onlinegamblingsa.com': ['inactive', 'blacklisted', 'coming_soon'],
|
|
19
19
|
'sporttheme.com': ['inactive', 'blacklisted'],
|
|
20
20
|
},
|
|
21
21
|
keep_page_extra_fields: {
|
package/src/helpers/getters.js
CHANGED
|
@@ -367,7 +367,9 @@ export function shiftFirstOperator(pageId, module, pagesMappedById) {
|
|
|
367
367
|
});
|
|
368
368
|
if (!checkIfExistElement) {
|
|
369
369
|
// eslint-disable-next-line no-unused-expressions
|
|
370
|
-
pagesMappedById[pageId] &&
|
|
370
|
+
if (pagesMappedById[pageId] && pagesMappedById[pageId].relation_type === 'operator') {
|
|
371
|
+
module.items.unshift(pagesMappedById[pageId]);
|
|
372
|
+
}
|
|
371
373
|
}
|
|
372
374
|
}
|
|
373
375
|
|
|
@@ -8,7 +8,7 @@ export default {
|
|
|
8
8
|
page_hreflang_group_id: null,
|
|
9
9
|
page_hreflang_combined: 0,
|
|
10
10
|
relation_id: 3148,
|
|
11
|
-
relation_type: '
|
|
11
|
+
relation_type: 'operator',
|
|
12
12
|
market: 'no_no',
|
|
13
13
|
region_code: null,
|
|
14
14
|
crawler_location_market: null,
|
|
@@ -56,7 +56,7 @@ export default {
|
|
|
56
56
|
title: "Caishen's Arrival",
|
|
57
57
|
vanity_label: null,
|
|
58
58
|
path: 'caishens-arrival-spilleautomater',
|
|
59
|
-
type: '
|
|
59
|
+
type: 'operator',
|
|
60
60
|
template: 'game_review',
|
|
61
61
|
banner: '5af66017a898b7a5d6349b9396c1c680.jpeg',
|
|
62
62
|
featured_image: '5af66017a898b7a5d6349b9396c1c680.jpeg',
|