Update AccessDenied.cshtml (#7247)

It was just missing the @ in the <h1> tag for the title.
pull/7249/head
Jack Franklin Perry, Jr 2018-06-22 14:34:43 -04:00 committed by Scott Addie
parent 4bad6f3978
commit 73ce00711d
1 changed files with 1 additions and 1 deletions

View File

@ -5,6 +5,6 @@
}
<header>
<h1 class="text-danger">ViewData["Title"]</h1>
<h1 class="text-danger">@ViewData["Title"]</h1>
<p class="text-danger">You do not have access to this resource.</p>
</header>