diff --git a/frontend/src/pages/pam/PamSessionsByIDPage/components/PamSessionLogsSection.tsx b/frontend/src/pages/pam/PamSessionsByIDPage/components/PamSessionLogsSection.tsx index 0e3854164..158143d5d 100644 --- a/frontend/src/pages/pam/PamSessionsByIDPage/components/PamSessionLogsSection.tsx +++ b/frontend/src/pages/pam/PamSessionsByIDPage/components/PamSessionLogsSection.tsx @@ -69,7 +69,18 @@ export const PamSessionLogsSection = ({ session }: Props) => { }) ) : (
- No session logs + {session.startedAt && session.endedAt ? ( +
+
Session logs are not available
+
+ Logs failed to upload from the Gateway. +
+ Please contact your Gateway administrators. +
+
+ ) : ( + "No session logs" + )}
)}