assui 2.0.88 → 2.0.89

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.
@@ -91,7 +91,7 @@ var LabelInput = function LabelInput(props) {
91
91
  "data-value": value ? value.length : 0,
92
92
  className: "label-input",
93
93
  type: "text",
94
- value: value,
94
+ value: value || '',
95
95
  onFocus: handleFocus,
96
96
  onBlur: handleBlur,
97
97
  onChange: handleChange
@@ -106,7 +106,7 @@ var LabelInput = function LabelInput(props) {
106
106
  "data-value": value ? value.length : 0,
107
107
  className: "label-input",
108
108
  type: "text",
109
- value: value,
109
+ value: value || '',
110
110
  onFocus: handleFocus,
111
111
  onBlur: handleBlur,
112
112
  onChange: handleChange
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "assui",
3
- "version": "2.0.88",
3
+ "version": "2.0.89",
4
4
  "description": "react ui library",
5
5
  "author": "jason <usochen@gmail.com>",
6
6
  "main": "./lib/index.js",
@@ -69,5 +69,5 @@
69
69
  "node": ">=10.0.0"
70
70
  },
71
71
  "license": "MIT",
72
- "gitHead": "0d17776f46e9cc203479dee452206b0798fd1bba"
72
+ "gitHead": "a022313d791999ef3ea6d64ca5c9dedb91086d64"
73
73
  }