diff options
Diffstat (limited to 'src/SMAPI.Web')
-rw-r--r-- | src/SMAPI.Web/Views/Mods/Index.cshtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SMAPI.Web/Views/Mods/Index.cshtml b/src/SMAPI.Web/Views/Mods/Index.cshtml index cda2923d..fa77c220 100644 --- a/src/SMAPI.Web/Views/Mods/Index.cshtml +++ b/src/SMAPI.Web/Views/Mods/Index.cshtml @@ -8,8 +8,8 @@ TimeSpan staleAge = DateTimeOffset.UtcNow - Model.LastUpdated; - bool hasBeta = true; // Model.BetaVersion != null; - string betaLabel = "SMAPI 3.6 only"; //"SDV @Model.BetaVersion only"; + bool hasBeta = Model.BetaVersion != null; + string betaLabel = "SDV @Model.BetaVersion only"; } @section Head { <link rel="stylesheet" href="~/Content/css/mods.css?r=20200218" /> |