We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 96309a1 commit fd2f559Copy full SHA for fd2f559
1 file changed
Zero-K.info/Controllers/TourneyController.cs
@@ -1,5 +1,6 @@
1
using System;
2
using System.Collections.Generic;
3
+using System.ComponentModel.DataAnnotations;
4
using System.Linq;
5
using System.Web;
6
using System.Web.Mvc;
@@ -17,7 +18,9 @@ public class TourneyModel
17
18
public List<int> Team1Ids { get; set; } = new List<int>();
19
public List<int> Team2Ids { get; set; } = new List<int>();
20
public string Title { get; set; }
- public string ModoptString { get; set; }
21
+
22
+ [DisplayFormat(ConvertEmptyStringToNull = false)]
23
+ public string ModoptString { get; set; } = "";
24
}
25
26
// GET: Tourney
0 commit comments