diff --git a/frontend/app/components/shared/SessionItem/SessionItem.tsx b/frontend/app/components/shared/SessionItem/SessionItem.tsx index 1c9d756a3..64d4bec18 100644 --- a/frontend/app/components/shared/SessionItem/SessionItem.tsx +++ b/frontend/app/components/shared/SessionItem/SessionItem.tsx @@ -112,152 +112,159 @@ function SessionItem(props: RouteComponentProps & Props) { }); return ( -
e.stopPropagation()} + -
-
- {!compact && ( -
-
- -
-
-
- !disableUser && !hasUserFilter && hasUserId - ? onUserClick(userId, userAnonymousId) - : null - } - > - +
e.stopPropagation()} + > +
+
+ {!compact && ( +
+
+ +
+
+
+ !disableUser && !hasUserFilter && hasUserId + ? onUserClick(userId, userAnonymousId) + : null + } + > + +
+ )} +
+
+ + + +
+
+ {!isAssist && ( + <> +
+ {eventsCount} + {eventsCount === 0 || eventsCount > 1 ? 'Events' : 'Event'} +
+ + + )} +
{live ? : formattedDuration}
+
- )} -
-
- - - -
-
- {!isAssist && ( - <> -
- {eventsCount} - {eventsCount === 0 || eventsCount > 1 ? 'Events' : 'Event'} -
- - - )} -
{live ? : formattedDuration}
-
-
-
-
- -
-
+
+
+ +
+
- - + + - - + + +
+ {isSessions && ( +
+ +
+ )}
- {isSessions && ( -
- -
- )} -
-
-
- {live && session.isCallActive && session.agentIds!.length > 0 ? ( -
-
+ {_metaList.length > 0 && }
- {_metaList.length > 0 && } -
+ ); }