Added lan_id to more places

This commit is contained in:
Anna-Sara Sélea 2026-02-25 21:17:01 +01:00
parent 4019752307
commit 903589d879

View file

@ -80,7 +80,7 @@ export default function Dashboard({ customers }: CustomerProps) {
<div className='container is-centered'> <div className='container is-centered'>
{filteredCustomers && filteredCustomers.map(customer => { {filteredCustomers && filteredCustomers.map(customer => {
return <a key={customer.id} className="box customer-box is-flex is-justify-content-space-between" href={`/customer/` + customer.id}> 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"> <span className="icon has-text-black">
<FontAwesomeIcon icon={faArrowRight} /> <FontAwesomeIcon icon={faArrowRight} />
</span> </span>