diff --git a/dashboard/src/scenes/report/view.js b/dashboard/src/scenes/report/view.js
index 83dda19bb..91f162ab2 100644
--- a/dashboard/src/scenes/report/view.js
+++ b/dashboard/src/scenes/report/view.js
@@ -1373,6 +1373,15 @@ const Consultations = ({ date, status, consultations, setSortOrder, setSortBy, s
sortOrder,
render: (consultation) => ,
},
+ {
+ title: 'Équipe(s) en charge',
+ dataKey: 'team',
+ render: (a) => (
+
+ {Array.isArray(a?.teams) ? a.teams.map((e) => ) : }
+
+ ),
+ },
]}
/>
@@ -1430,6 +1439,15 @@ const ConsultationsCreatedAt = ({ date, consultations }) => {
render: (action) => ,
},
{ title: 'Statut', dataKey: 'status', render: (action) => },
+ {
+ title: 'Équipe(s) en charge',
+ dataKey: 'team',
+ render: (a) => (
+
+ {Array.isArray(a?.teams) ? a.teams.map((e) => ) : }
+
+ ),
+ },
]}
/>