diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-05-16 11:34:00 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-05-16 11:34:00 -0400 |
commit | a2cfb71d898aca98d621f1b86dd5611337eea034 (patch) | |
tree | 92c89cc94496d7e9cd99a64f62382bc5350c6478 /src/SMAPI.Web/Views/Shared/_Layout.cshtml | |
parent | c776f6053bd0b9db909ebda2853a86c1cd21c2cf (diff) | |
download | SMAPI-a2cfb71d898aca98d621f1b86dd5611337eea034.tar.gz SMAPI-a2cfb71d898aca98d621f1b86dd5611337eea034.tar.bz2 SMAPI-a2cfb71d898aca98d621f1b86dd5611337eea034.zip |
minor cleanup
Diffstat (limited to 'src/SMAPI.Web/Views/Shared/_Layout.cshtml')
-rw-r--r-- | src/SMAPI.Web/Views/Shared/_Layout.cshtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI.Web/Views/Shared/_Layout.cshtml b/src/SMAPI.Web/Views/Shared/_Layout.cshtml index 2d06ceb1..67dcd3b3 100644 --- a/src/SMAPI.Web/Views/Shared/_Layout.cshtml +++ b/src/SMAPI.Web/Views/Shared/_Layout.cshtml @@ -29,7 +29,7 @@ </div> <div id="content-column"> <div id="content"> - @if (ViewData["ViewTitle"] != string.Empty) + @if (ViewData["ViewTitle"] as string != string.Empty) { <h1>@(ViewData["ViewTitle"] ?? ViewData["Title"])</h1> } |