@firecms/ui 3.0.0-canary.123 → 3.0.0-canary.124

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@firecms/ui",
3
3
  "type": "module",
4
- "version": "3.0.0-canary.123",
4
+ "version": "3.0.0-canary.124",
5
5
  "description": "Awesome Firebase/Firestore-based headless open-source CMS",
6
6
  "funding": {
7
7
  "url": "https://github.com/sponsors/firecmsco"
@@ -105,7 +105,7 @@
105
105
  "src",
106
106
  "tailwind.config.js"
107
107
  ],
108
- "gitHead": "e1e5cea937b902c939ac7505d91d8209d19a0b09",
108
+ "gitHead": "b1ef1804b61ad99988128d9a79d4364dba7d9beb",
109
109
  "publishConfig": {
110
110
  "access": "public"
111
111
  }
@@ -140,7 +140,6 @@ export const Select = forwardRef<HTMLDivElement, SelectProps>(({
140
140
  }}
141
141
  placeholder={placeholder}
142
142
  className={"w-full"}>
143
- {!hasValue && placeholder}
144
143
  {hasValue && value && renderValue ? renderValue(value) : placeholder}
145
144
  {hasValue && !renderValue && value}
146
145
  </SelectPrimitive.Value>