fix weird satistics filter bug

This commit is contained in:
keyan 2022-01-19 15:51:55 -06:00
parent 6b19b10bb2
commit abac0c8c70
1 changed files with 4 additions and 0 deletions

View File

@ -164,18 +164,22 @@ export default function Satistics ({ data: { walletHistory: { facts, cursor } }
<div className='d-flex justify-content-around flex-wrap'>
<Checkbox
label='invoice' name='invoice' inline
checked={included('invoice')}
handleChange={c => filterRoutePush('invoice', c)}
/>
<Checkbox
label='withdrawal' name='withdrawal' inline
checked={included('withdrawal')}
handleChange={c => filterRoutePush('withdrawal', c)}
/>
<Checkbox
label='stacked' name='stacked' inline
checked={included('stacked')}
handleChange={c => filterRoutePush('stacked', c)}
/>
<Checkbox
label='spent' name='spent' inline
checked={included('spent')}
handleChange={c => filterRoutePush('spent', c)}
/>
</div>