diff --git a/frontend/src/components/TicketBoard/ServiceList/index.js b/frontend/src/components/TicketBoard/ServiceList/index.js index 648f25bd..b14a64a2 100644 --- a/frontend/src/components/TicketBoard/ServiceList/index.js +++ b/frontend/src/components/TicketBoard/ServiceList/index.js @@ -214,7 +214,9 @@ function ServiceList({ readOnly }) { ) : null} -
+ {rawDataSource.filter( + (item) => item.billable_id === serviceCost.billable_id + ).length > 0 ?
For:
{Object.values( rawDataSource.filter( @@ -223,7 +225,7 @@ function ServiceList({ readOnly }) { ).map((item) => { return
{item.sample_id} - {item.authorized_by}
; })} -
+
: null}
{!readOnly ? (