mirror of
https://github.com/anna-sara/lan_kiosk
synced 2026-03-16 11:45:40 +01:00
Added lan_id to more places
This commit is contained in:
parent
4019752307
commit
903589d879
1 changed files with 1 additions and 1 deletions
|
|
@ -80,7 +80,7 @@ export default function Dashboard({ customers }: CustomerProps) {
|
|||
<div className='container is-centered'>
|
||||
{filteredCustomers && filteredCustomers.map(customer => {
|
||||
return <a key={customer.id} className="box customer-box is-flex is-justify-content-space-between" href={`/customer/` + customer.id}>
|
||||
<p>{customer.name}</p>
|
||||
<p>{customer.id}. {customer.name}</p>
|
||||
<span className="icon has-text-black">
|
||||
<FontAwesomeIcon icon={faArrowRight} />
|
||||
</span>
|
||||
|
|
|
|||
Loading…
Reference in a new issue