next-helios-fe 1.6.11 → 1.6.12

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": "next-helios-fe",
3
- "version": "1.6.11",
3
+ "version": "1.6.12",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -136,7 +136,7 @@ export const Autocomplete: React.FC<AutocompleteProps> = ({
136
136
  placeholder={placeholder}
137
137
  required={rest.required}
138
138
  disabled={rest.disabled}
139
- value={tempFilter}
139
+ value={tempFilter || ""}
140
140
  onChange={(e) => {
141
141
  setTempFilter(e.target.value);
142
142
  }}