mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 05:22:02 +00:00
feat: add bank name column
This commit is contained in:
@@ -189,6 +189,11 @@ const CustomersTable = () => {
|
||||
accessorKey: 'email',
|
||||
header: 'Email',
|
||||
},
|
||||
{
|
||||
accessorKey: 'bank_name',
|
||||
header: 'Nama Bank',
|
||||
cell: (props) => props.row.original.bank_name || '-',
|
||||
},
|
||||
{
|
||||
header: 'Aksi',
|
||||
cell: (props: CellContext<Customer, unknown>) => {
|
||||
|
||||
@@ -326,6 +326,11 @@ const SuppliersTable = () => {
|
||||
accessorKey: 'email',
|
||||
header: 'Email',
|
||||
},
|
||||
{
|
||||
accessorKey: 'bank_name',
|
||||
header: 'Nama Bank',
|
||||
cell: (props) => props.row.original.bank_name || '-',
|
||||
},
|
||||
{
|
||||
accessorKey: 'address',
|
||||
header: 'Alamat',
|
||||
|
||||
Reference in New Issue
Block a user