@odigos/ui-kit 0.0.74 → 0.0.75
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 +7 -0
- package/lib/containers.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.75](https://github.com/odigos-io/ui-kit/compare/ui-kit-v0.0.74...ui-kit-v0.0.75) (2025-08-06)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* crash when opening libraries in source drawer ([#294](https://github.com/odigos-io/ui-kit/issues/294)) ([f24fc55](https://github.com/odigos-io/ui-kit/commit/f24fc5572fdda0fbdf6e16049ef18f4249c7ca63))
|
|
9
|
+
|
|
3
10
|
## [0.0.74](https://github.com/odigos-io/ui-kit/compare/ui-kit-v0.0.73...ui-kit-v0.0.74) (2025-08-06)
|
|
4
11
|
|
|
5
12
|
|
package/lib/containers.js
CHANGED
|
@@ -4301,7 +4301,7 @@ const Libraries = ({ source, fetchSourceLibraries }) => {
|
|
|
4301
4301
|
},
|
|
4302
4302
|
}).then(({ data }) => {
|
|
4303
4303
|
if (data?.instrumentationInstanceComponents) {
|
|
4304
|
-
setLibraries(data.instrumentationInstanceComponents.sort((a, b) => a.name.localeCompare(b.name)));
|
|
4304
|
+
setLibraries(deepClone(data.instrumentationInstanceComponents).sort((a, b) => a.name.localeCompare(b.name)));
|
|
4305
4305
|
}
|
|
4306
4306
|
else {
|
|
4307
4307
|
setFailed(true);
|