diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-06-20 12:08:57 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-06-20 12:08:57 -0400 |
commit | 74defbfec6dd06789d186d1f7ce1f55280c64c59 (patch) | |
tree | 6a081f94395c986a4bf89f8d491b0f8619b67fca /src/SMAPI.Web/Views | |
parent | ed3309e7bb8d5f3f6c3d08df3475bd811d5b16d0 (diff) | |
download | SMAPI-74defbfec6dd06789d186d1f7ce1f55280c64c59.tar.gz SMAPI-74defbfec6dd06789d186d1f7ce1f55280c64c59.tar.bz2 SMAPI-74defbfec6dd06789d186d1f7ce1f55280c64c59.zip |
remove special handling for SMAPI 3.6 beta
Diffstat (limited to 'src/SMAPI.Web/Views')
-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" /> |