Skip to content

Commit

Permalink
Update field properties
Browse files Browse the repository at this point in the history
  • Loading branch information
Ignas-rgb committed Jun 10, 2024
1 parent f88d3bb commit 540f060
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/admin/dto/full-report.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ export class FullReportDto {
@ApiProperty()
email: string;

@ApiProperty()
inspection: string;
@ApiProperty({ nullable: true })
inspection?: string;

@ApiProperty()
inspectionId: string;
@ApiProperty({ nullable: true })
inspectionId?: string;

@ApiProperty()
@ToBoolean()
Expand All @@ -40,9 +40,9 @@ export class FullReportDto {
@ToBoolean()
isDeleted: boolean;

@ApiProperty()
@ApiProperty({ nullable: true })
@ToBoolean()
isTransferred: boolean;
isTransferred?: boolean;

@ApiProperty()
comment: string;
Expand Down

0 comments on commit 540f060

Please sign in to comment.