Skip to content
Snippets Groups Projects
Unverified Commit b19e9846 authored by meskio's avatar meskio :tent:
Browse files

Improve the UX

parent 53631107
No related branches found
No related tags found
No related merge requests found
......@@ -114,7 +114,7 @@ function Purchase(props) {
Cancelar
</Button>
<Button variant="primary" disabled={disabled} onClick={submit}>
Comprar
Confirmar
</Button>
</Modal.Footer>
</Modal>
......
......@@ -47,7 +47,9 @@ function TransactionList() {
<td>{icon(transaction)}</td>
<td>{printTransactionID(transaction)}</td>
<td>{printDate(transaction.date)}</td>
<td>{transaction.member.name}</td>
<td>
{transaction.member.name} ({transaction.member.num})
</td>
<td>{transaction.proxy ? transaction.proxy.name : ""}</td>
<td>{printMoney(transaction.total) + ""}</td>
</TransactionTr>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment