Skip to content

Commit 601814b

Browse files
renanvalentinLucas Araujo
authored andcommitted
[DDW-738] Fix discreet mode logic on filter component
1 parent 9c95553 commit 601814b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/renderer/app/components/wallet/transactions/FilterDialog.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,12 +196,12 @@ class FilterDialog extends Component<Props> {
196196
fromAmount: {
197197
type: 'number',
198198
label: '',
199-
value: this.getFromAmountValue(fromAmount),
199+
value: fromAmount,
200200
},
201201
toAmount: {
202202
type: 'number',
203203
label: '',
204-
value: this.getToAmountValue(toAmount),
204+
value: toAmount,
205205
},
206206
},
207207
});

0 commit comments

Comments
 (0)