Skip to content

Commit

Permalink
Use correct class name in razor
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-vakil committed Jul 19, 2024
1 parent d5e2234 commit f23510c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Opserver.Web/Views/Shared/NoConfiguration.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
<P>
Your access:
<ul>
<li>Account: @Current.Security.AccountName</li>
<li>Is Anonymous: @Current.Security.IsAnonymous</li>
<li>Is Global Admin: @Current.Security.IsGlobalAdmin</li>
<li>Roles: @string.Join(", ", Current.Security.Roles)</li>
<li>Account: @Current.User.AccountName</li>
<li>Is Anonymous: @Current.User.IsAnonymous</li>
<li>Is Global Admin: @Current.User.IsGlobalAdmin</li>
<li>Roles: @string.Join(", ", Current.User.Roles)</li>
</ul>
</P>
}
Expand Down

0 comments on commit f23510c

Please sign in to comment.