Skip to content

Commit

Permalink
fix : Tourney Control modOptions #2992 (#2993)
Browse files Browse the repository at this point in the history
  • Loading branch information
Azim-Palmer authored Sep 1, 2024
1 parent 96309a1 commit fd2f559
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Zero-K.info/Controllers/TourneyController.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Web;
using System.Web.Mvc;
Expand All @@ -17,7 +18,9 @@ public class TourneyModel
public List<int> Team1Ids { get; set; } = new List<int>();
public List<int> Team2Ids { get; set; } = new List<int>();
public string Title { get; set; }
public string ModoptString { get; set; }

[DisplayFormat(ConvertEmptyStringToNull = false)]
public string ModoptString { get; set; } = "";
}

// GET: Tourney
Expand Down

0 comments on commit fd2f559

Please sign in to comment.