fix weird satistics filter bug
This commit is contained in:
parent
6b19b10bb2
commit
abac0c8c70
|
@ -164,18 +164,22 @@ export default function Satistics ({ data: { walletHistory: { facts, cursor } }
|
||||||
<div className='d-flex justify-content-around flex-wrap'>
|
<div className='d-flex justify-content-around flex-wrap'>
|
||||||
<Checkbox
|
<Checkbox
|
||||||
label='invoice' name='invoice' inline
|
label='invoice' name='invoice' inline
|
||||||
|
checked={included('invoice')}
|
||||||
handleChange={c => filterRoutePush('invoice', c)}
|
handleChange={c => filterRoutePush('invoice', c)}
|
||||||
/>
|
/>
|
||||||
<Checkbox
|
<Checkbox
|
||||||
label='withdrawal' name='withdrawal' inline
|
label='withdrawal' name='withdrawal' inline
|
||||||
|
checked={included('withdrawal')}
|
||||||
handleChange={c => filterRoutePush('withdrawal', c)}
|
handleChange={c => filterRoutePush('withdrawal', c)}
|
||||||
/>
|
/>
|
||||||
<Checkbox
|
<Checkbox
|
||||||
label='stacked' name='stacked' inline
|
label='stacked' name='stacked' inline
|
||||||
|
checked={included('stacked')}
|
||||||
handleChange={c => filterRoutePush('stacked', c)}
|
handleChange={c => filterRoutePush('stacked', c)}
|
||||||
/>
|
/>
|
||||||
<Checkbox
|
<Checkbox
|
||||||
label='spent' name='spent' inline
|
label='spent' name='spent' inline
|
||||||
|
checked={included('spent')}
|
||||||
handleChange={c => filterRoutePush('spent', c)}
|
handleChange={c => filterRoutePush('spent', c)}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue