fix(server): storage usage should be float rather than int (#4275)

This commit is contained in:
LongYinan
2023-09-07 22:15:33 -07:00
committed by GitHub
parent 0bc3d9ebf5
commit aa025b0d46
5 changed files with 127 additions and 19 deletions
@@ -101,7 +101,7 @@ export class InvitationWorkspaceType {
@ObjectType()
export class WorkspaceBlobSizes {
@Field(() => Int)
@Field(() => Float)
size!: number;
}