BIG-84: remove number sign.

This commit is contained in:
elforjani3
2021-09-14 16:18:37 +02:00
parent 0c238ab887
commit 48c77fcea2
5 changed files with 5 additions and 5 deletions

View File

@@ -185,7 +185,7 @@ export function useEstiamtesTableColumns() {
id: 'estimate_number',
Header: intl.get('estimate_number'),
accessor: (row) =>
row.estimate_number ? `#${row.estimate_number}` : null,
row.estimate_number ? `${row.estimate_number}` : null,
width: 140,
className: 'estimate_number',
clickable: true,

View File

@@ -114,7 +114,7 @@ export function usePaymentReceivesColumns() {
id: 'payment_receive_no',
Header: intl.get('payment_receive_no'),
accessor: (row) =>
row.payment_receive_no ? `#${row.payment_receive_no}` : null,
row.payment_receive_no ? `${row.payment_receive_no}` : null,
width: 140,
className: 'payment_receive_no',
clickable: true,