gatsby-core-theme 44.26.1 → 44.26.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 +11 -0
- package/package.json +1 -1
- package/src/resolver/index.mjs +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## [44.26.2](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.26.1...v44.26.2) (2026-06-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* fix the error ([a480c4d](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/a480c4d3ea91292ec689f5acf3c3c42b08fc9c52))
|
|
7
|
+
* remove the inactive opertors if they do not have status active ([fd5e339](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/fd5e33911ec805508eea7ffaa5fee0cafca9d4cc))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
* Merge branch 'EN-503-Inactive-opertors-autocomplete' into 'master' ([06de153](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/commit/06de153ddfa3336fd40d759ed829cddfcbe10b80))
|
|
11
|
+
|
|
1
12
|
## [44.26.1](https://gitlab.com/g2m-gentoo/team-floyd/themes/gatsby-themes/compare/v44.26.0...v44.26.1) (2026-06-10)
|
|
2
13
|
|
|
3
14
|
|
package/package.json
CHANGED
package/src/resolver/index.mjs
CHANGED
|
@@ -565,7 +565,7 @@ export default {
|
|
|
565
565
|
extra_fields?.operator,
|
|
566
566
|
searchReleationPickKeys?.operator
|
|
567
567
|
);
|
|
568
|
-
|
|
568
|
+
|
|
569
569
|
const minimalPage = {
|
|
570
570
|
title,
|
|
571
571
|
pageType,
|
|
@@ -578,7 +578,7 @@ export default {
|
|
|
578
578
|
...(relation?.game_id && { game_id: relation.game_id }),
|
|
579
579
|
};
|
|
580
580
|
|
|
581
|
-
if (status === "active") {
|
|
581
|
+
if (status === "active" && (!relation || relation.status === "active")) {
|
|
582
582
|
searchSimpleData[page.market].push(
|
|
583
583
|
cloneDeep({
|
|
584
584
|
...minimalPage,
|