Skip to content

Commit

Permalink
Merge branch '4.x' of https://github.com/craftcms/cms into 5.x
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonkelly committed Jan 14, 2025
2 parents 7924127 + 6ad4e8c commit 7b88952
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- Fixed a bug where the control panel could display a notice about the Craft CMS license belonging to a different domain, even when accessing the control panel from the correct domain. ([#16396](https://github.com/craftcms/cms/issues/16396))
- Fixed a bug where Unicode special characters weren’t getting stripped out of search keywords. ([#16430](https://github.com/craftcms/cms/issues/16430))
- Fixed an error that could occur when setting `relatedTo*` GraphQL arguments to `null`. ([#16431](https://github.com/craftcms/cms/issues/16431))
- Fixed a bug where field layout elements’ action menus could have an empty action group.
- Fixed a bug where Single section entries could be duplicated after running the `entry-types/merge` command. ([#16394](https://github.com/craftcms/cms/issues/16394))
- Fixed a styling bug with the system message modal. ([#16410](https://github.com/craftcms/cms/issues/16410))
Expand Down
2 changes: 2 additions & 0 deletions src/gql/ElementQueryConditionBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,8 @@ private function _extractArgumentValue(Node $argumentNode): mixed
$extractedValue[$fieldNode->name->value] = $this->_extractArgumentValue($fieldNode);
}
return $extractedValue;
case 'NullValue':
return null;
default:
return $argumentNodeValue->value;
}
Expand Down

0 comments on commit 7b88952

Please sign in to comment.