tailwind #9

Manually merged
peperunas merged 157 commits from tailwind into master 2020-12-28 18:38:52 +00:00
Showing only changes of commit dfc9adcd9f - Show all commits

View File

@ -26,8 +26,8 @@ export class PositionTable extends Component<{}, { positions: Array<PositionStat
return (<tr key={position.id}>
<th>{position.id}</th>
<th>{position.symbol}</th>
<th>{position.profit_loss}</th>
<th>{position.profit_loss_percentage} %</th>
<th>{position.profit_loss.toFixed(2)}</th>
<th>{position.profit_loss_percentage.toFixed(2)} %</th>
</tr>)
})
}