From f48365350602d499bde32b6cf415d8e8e2b81c26 Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Mon, 16 Feb 2026 18:27:52 -0500 Subject: [PATCH] show performer avatar in HistoryCard component --- src/views/History/HistoryCard.jsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/views/History/HistoryCard.jsx b/src/views/History/HistoryCard.jsx index 26810ef..8e562d2 100644 --- a/src/views/History/HistoryCard.jsx +++ b/src/views/History/HistoryCard.jsx @@ -2,7 +2,6 @@ import { AccessTime, CalendarMonth, Check, - CheckCircle, EventNote, HourglassEmpty, MoreVert, @@ -235,9 +234,11 @@ const HistoryCard = ({ size='sm' variant='solid' color='success' - startDecorator={} + startDecorator={ + + } > - Done by {performer?.displayName || 'Unknown'} + {performer?.displayName || 'Unknown'} {historyEntry.completedBy !== historyEntry.assignedTo &&