From 1b15ef7453305ff196a446f37a95bc79a98c6061 Mon Sep 17 00:00:00 2001 From: Tudor Stanciu Date: Tue, 12 May 2020 02:54:53 +0300 Subject: [PATCH] SessionSummary update --- .../session/components/SessionSummary.js | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/src/features/session/components/SessionSummary.js b/src/features/session/components/SessionSummary.js index 57600b1..44f174f 100644 --- a/src/features/session/components/SessionSummary.js +++ b/src/features/session/components/SessionSummary.js @@ -30,11 +30,11 @@ const SessionSummary = ({ session }) => { return ( <> - + {"Session: "} {session.sessionId} - + {"Active: "} {session.active ? ( @@ -46,6 +46,21 @@ const SessionSummary = ({ session }) => { {"Start date: "} {session.startDate} + + + {"Stop date: "} + {session.stopDate || "---"} + + + + {"Running time: "} + {session.runningTime} + + + + {"Host: "} + {session.hostName} + );