From 18491cc380cba057937ac2b12c3c558383678697 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Fri, 3 Mar 2023 22:53:05 +0100 Subject: [PATCH] timeUsed is a float --- backend/src/graphql/model/GdtEntryList.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/graphql/model/GdtEntryList.ts b/backend/src/graphql/model/GdtEntryList.ts index 0329e4182..7c4bffb5a 100644 --- a/backend/src/graphql/model/GdtEntryList.ts +++ b/backend/src/graphql/model/GdtEntryList.ts @@ -28,6 +28,6 @@ export class GdtEntryList { @Field(() => Float) gdtSum: number - @Field(() => Int) + @Field(() => Float) timeUsed: number }