haya-select 1.0.4 → 1.0.5
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 +1 -1
- package/src/select/index.jsx +1 -1
package/package.json
CHANGED
package/src/select/index.jsx
CHANGED
|
@@ -23,7 +23,7 @@ const presentOption = (currentValue) => {
|
|
|
23
23
|
)
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
throw new Error(
|
|
26
|
+
throw new Error(`Couldn't figure out how to present option from the given keys: ${Object.keys(currentValue, ", ")}`)
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
const LoadedOption = class LoadedOption extends BaseComponent {
|