We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
""
1 parent 32e8256 commit 1e598f6Copy full SHA for 1e598f6
js/data-frame/filter-numeric.tsx
@@ -79,7 +79,7 @@ const FilterNumericImpl: React.FC<FilterNumericImplProps> = (props) => {
79
style={{ flex: "1 1 0", width: "0" }}
80
type="number"
81
placeholder={createPlaceholder(editing, "Min", rangeMin)}
82
- defaultValue={min}
+ value={min ?? ""}
83
// min={rangeMin}
84
// max={rangeMax}
85
step="any"
@@ -101,7 +101,7 @@ const FilterNumericImpl: React.FC<FilterNumericImplProps> = (props) => {
101
102
103
placeholder={createPlaceholder(editing, "Max", rangeMax)}
104
- defaultValue={max}
+ value={max ?? ""}
105
106
107
0 commit comments