ywana-core8 0.0.368 → 0.0.369

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,6 +1,6 @@
1
1
  {
2
2
  "name": "ywana-core8",
3
- "version": "0.0.368",
3
+ "version": "0.0.369",
4
4
  "description": "ywana-core8",
5
5
  "author": "Ernesto Roldan Garcia",
6
6
  "license": "MIT",
@@ -180,7 +180,7 @@ export const DropDown = (props) => {
180
180
 
181
181
  return (
182
182
  <div className="dropdown">
183
- <TextField {...props} value={label} onChange={change} readOnly={!predictive}/>
183
+ <TextField {...props} onClick={toggle} value={label} onChange={change} readOnly={!predictive}/>
184
184
  {!readOnly ? <Icon icon="expand_more" clickable size="small" action={toggle} /> : null }
185
185
  {renderOptions()}
186
186
  </div>