Skip to content

Commit

Permalink
Fixed linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
nitrosx committed Jun 15, 2023
1 parent 8b52a06 commit f067c63
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions src/datablocks/schemas/datablock.schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export class Datablock extends OwnableClass {
@ApiProperty({
type: Number,
required: true,
description:
description:
"Total size in bytes of all files in the datablock when on archived.",
})
@Prop({
Expand Down Expand Up @@ -99,12 +99,11 @@ export class Datablock extends OwnableClass {
type: "array",
items: { $ref: getSchemaPath(DataFile) },
required: true,
description:
"Embedded schema definition for each file.",
description: "Embedded schema definition for each file.",
})
@Prop({
type: [DataFileSchema],
required: true
required: true,
})
dataFileList: DataFile[];
}
Expand Down
2 changes: 1 addition & 1 deletion src/origdatablocks/schemas/origdatablock.schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export class OrigDatablock extends OwnableClass {
})
@Prop({
type: [DataFileSchema],
required: true
required: true,
})
dataFileList: DataFile[];
}
Expand Down

0 comments on commit f067c63

Please sign in to comment.