Skip to content

Commit 1596cd2

Browse files
committed
fix(fota): statusDetail can be a blank string
1 parent 53a8d71 commit 1596cd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/getFOTAJob.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const FOTAJobType = Type.Object(
3737
title: 'Status',
3838
description: 'Current status of the job',
3939
}),
40-
statusDetail: Type.Optional(Type.String({ minLength: 1 })),
40+
statusDetail: Type.Optional(Type.String({ minLength: 0 })),
4141
name: Type.Optional(Type.String({ minLength: 1 })),
4242
description: Type.Optional(Type.String({ minLength: 1 })),
4343
createdAt: ts,

0 commit comments

Comments
 (0)