Skip to content

Commit

Permalink
refactor emulator field to be nullable but still required (#1962)
Browse files Browse the repository at this point in the history
  • Loading branch information
Masterjun3 authored Aug 24, 2024
1 parent e570e91 commit 2c9b8ff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion TASVideos/Pages/Publications/Catalog.cshtml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ public class PublicationCatalog
public int SystemFramerate { get; init; }

[StringLength(50)]
public string Emulator { get; init; } = "";
[Required]
public string? Emulator { get; init; }
}
}

0 comments on commit 2c9b8ff

Please sign in to comment.