Skip to content

Commit c81b9cb

Browse files
Merge pull request #63 from infinum/release/6.0.1
6.0.1
2 parents d96132e + f58a693 commit c81b9cb

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file.
33

44
This projects adheres to [Semantic Versioning](https://semver.org/) and [Keep a CHANGELOG](https://keepachangelog.com/).
55

6+
## [6.0.1] - 2025-11-14
7+
- Fix output issue with `ContainerGroup` passed components.
8+
69
## [6.0.0] - 2025-11-14
710
- Updated dependencies.
811
- Reworked visuals of most controls.
@@ -498,6 +501,7 @@ Co-authored with @piqusy
498501
- Initial release
499502

500503
[Unreleased]: https://github.com/infinum/eightshift-ui-components/compare/master...HEAD
504+
[6.0.1]: https://github.com/infinum/eightshift-ui-components/compare/6.0.0...6.0.1
501505
[6.0.0]: https://github.com/infinum/eightshift-ui-components/compare/5.6.1...6.0.0
502506
[5.6.1]: https://github.com/infinum/eightshift-ui-components/compare/5.6.0...5.6.1
503507
[5.6.0]: https://github.com/infinum/eightshift-ui-components/compare/5.5.0...5.6.0

lib/components/base-control/container.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ export const ContainerGroup = forwardRef((props, ref) => {
198198
];
199199
}
200200

201-
return acc;
201+
return [...acc, child];
202202
}, [])
203203
: children;
204204

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@eightshift/ui-components",
3-
"version": "6.0.0",
3+
"version": "6.0.1",
44
"type": "module",
55
"main": "./dist/index.js",
66
"module": "./dist/index.js",

0 commit comments

Comments
 (0)