Explicit buyer & seller fees in frontend

This commit is contained in:
Reckless_Satoshi 2022-03-02 15:36:11 -08:00
parent 89502500c7
commit c9cdc2743d
No known key found for this signature in database
GPG Key ID: 9C4585B561315571
2 changed files with 11 additions and 10 deletions

View File

@ -296,7 +296,7 @@ bottomBarDesktop =()=>{
<this.dialogProfile/>
<Grid container xs={12}>
<Grid item xs={2}>
<Grid item xs={1.9}>
<div style={{display: this.props.avatarLoaded ? '':'none'}}>
<ListItemButton onClick={this.handleClickOpenProfile} >
<Tooltip open={(this.state.active_order_id > 0 & !this.state.profileShown & this.props.avatarLoaded) ? true: false}
@ -318,7 +318,7 @@ bottomBarDesktop =()=>{
</div>
</Grid>
<Grid item xs={2}>
<Grid item xs={1.9}>
<ListItem className="bottomItem">
<ListItemIcon size="small">
<InventoryIcon/>
@ -331,7 +331,7 @@ bottomBarDesktop =()=>{
</ListItem>
</Grid>
<Grid item xs={2}>
<Grid item xs={1.9}>
<ListItem className="bottomItem">
<ListItemIcon size="small">
<SellIcon/>
@ -344,7 +344,7 @@ bottomBarDesktop =()=>{
</ListItem>
</Grid>
<Grid item xs={2}>
<Grid item xs={1.9}>
<ListItem className="bottomItem">
<ListItemIcon size="small">
<SmartToyIcon/>
@ -357,7 +357,7 @@ bottomBarDesktop =()=>{
</ListItem>
</Grid>
<Grid item xs={2}>
<Grid item xs={1.9}>
<ListItem className="bottomItem">
<ListItemIcon size="small">
<PriceChangeIcon/>
@ -370,7 +370,7 @@ bottomBarDesktop =()=>{
</ListItem>
</Grid>
<Grid item xs={1}>
<Grid item xs={1.5}>
<ListItem className="bottomItem">
<ListItemIcon size="small">
<PercentIcon/>
@ -378,7 +378,7 @@ bottomBarDesktop =()=>{
<ListItemText
primaryTypographyProps={{fontSize: '14px'}}
secondaryTypographyProps={{fontSize: '12px'}}
primary={this.state.fee*100}
primary={this.state.fee*100+"% (buyer)"}
secondary="Trade Fee" />
</ListItem>
</Grid>
@ -494,8 +494,9 @@ bottomBarDesktop =()=>{
<ListItemText
primaryTypographyProps={{fontSize: '14px'}}
secondaryTypographyProps={{fontSize: '12px'}}
primary={this.state.fee*100+"%"}
secondary="Trading fee" />
secondary="Trading fees">
{this.state.fee*100}% <small>(buyer)</small> | 0.0% <small>(seller)</small>
</ListItemText>
</ListItem>
</List>

File diff suppressed because one or more lines are too long