From eb741ba20d8e9f832daccaf0effabf5a55d18cf9 Mon Sep 17 00:00:00 2001 From: Davenludd Date: Tue, 2 Apr 2024 17:33:20 +0200 Subject: [PATCH] Add total time calculation to DisplayUnsignedReports component --- frontend/src/Components/DisplayUnsignedReports.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/frontend/src/Components/DisplayUnsignedReports.tsx b/frontend/src/Components/DisplayUnsignedReports.tsx index 340eae2..232cb31 100644 --- a/frontend/src/Components/DisplayUnsignedReports.tsx +++ b/frontend/src/Components/DisplayUnsignedReports.tsx @@ -43,6 +43,15 @@ function DisplayUserProject(): JSX.Element {

{unsignedReport.userId}

Week:

{unsignedReport.week}

+ Total Time: +

+ {unsignedReport.developmentTime + + unsignedReport.meetingTime + + unsignedReport.adminTime + + unsignedReport.ownWorkTime + + unsignedReport.studyTime + + unsignedReport.testingTime} +

Signed:

NO