diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0bb72d5..09aa733 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,15 @@
All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/).
+## [0.1.1] - 2026-04-XX
+
+### Added
+
+### Changed
+
+### Fixed
+- Fix array label properties display.
+
## [0.1.0] - 2026-04-20
### Added
diff --git a/src/components/common/ObjectPicker.tsx b/src/components/common/ObjectPicker.tsx
index ea92ce2..30f8caf 100644
--- a/src/components/common/ObjectPicker.tsx
+++ b/src/components/common/ObjectPicker.tsx
@@ -48,8 +48,14 @@ export function ObjectPicker({ schema, objectName, value, onChange, onClear, pla
return (
{value && (
-
- {labelLoading ? : (display ?? value)}
+
+ {labelLoading ? (
+
+ ) : (
+
+ {display ?? value}
+
+ )}
{onClear && (