Fixed wrong type

This commit is contained in:
Nicolai Ort 2020-11-27 18:40:11 +01:00
parent e5562efe35
commit 27462b0615
1 changed files with 1 additions and 1 deletions

View File

@ -22,5 +22,5 @@ export class Track {
@Column()
@IsInt()
@IsPositive()
length: string;
length: number;
}