diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-08-25 18:26:15 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2021-08-25 18:26:15 -0400 |
commit | b8dac41da8aa7ea8f42b89acd1e9a74829d70532 (patch) | |
tree | 0c630e97b81114bdccd148b4a158df5fbd5d2a20 /src/SMAPI.Web/Views | |
parent | 911843e1beb72a3fc0337a697f732215b66304c0 (diff) | |
download | SMAPI-b8dac41da8aa7ea8f42b89acd1e9a74829d70532.tar.gz SMAPI-b8dac41da8aa7ea8f42b89acd1e9a74829d70532.tar.bz2 SMAPI-b8dac41da8aa7ea8f42b89acd1e9a74829d70532.zip |
fix beta label in web UI
Diffstat (limited to 'src/SMAPI.Web/Views')
-rw-r--r-- | src/SMAPI.Web/Views/Mods/Index.cshtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Web/Views/Mods/Index.cshtml b/src/SMAPI.Web/Views/Mods/Index.cshtml index fa77c220..7dcd0718 100644 --- a/src/SMAPI.Web/Views/Mods/Index.cshtml +++ b/src/SMAPI.Web/Views/Mods/Index.cshtml @@ -9,7 +9,7 @@ TimeSpan staleAge = DateTimeOffset.UtcNow - Model.LastUpdated; bool hasBeta = Model.BetaVersion != null; - string betaLabel = "SDV @Model.BetaVersion only"; + string betaLabel = $"SDV {Model.BetaVersion} only"; } @section Head { <link rel="stylesheet" href="~/Content/css/mods.css?r=20200218" /> |