Skip to content

Commit

Permalink
Revert "temp remove tag helpers (#16977)"
Browse files Browse the repository at this point in the history
This reverts commit 84cc305.
  • Loading branch information
bergmania committed Oct 10, 2024
1 parent f4b4aab commit f031795
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
var allowPasswordReset = SecuritySettings.Value.AllowPasswordReset && EmailSender.CanSendRequiredEmail();
var disableLocalLogin = ExternalLogins.HasDenyLocalLogin();
}
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers

<!DOCTYPE html>
<html lang="@GlobalSettings.Value.DefaultUILanguage">
Expand All @@ -44,7 +45,7 @@
<meta name="pinterest" content="nopin"/>
<title>Umbraco</title>

<link rel="stylesheet" href="~/umbraco/backoffice/css/uui-css.css" />
<link rel="stylesheet" href="~/umbraco/backoffice/css/uui-css.css" asp-append-version="true" />
<style>
body {
margin: 0;
Expand All @@ -54,7 +55,7 @@
</style>

@await Html.BackOfficeImportMapScriptAsync(JsonSerializer, BackOfficePathGenerator, PackageManifestService)
<script type="module" src="~/umbraco/login/login.js"></script>
<script type="module" src="~/umbraco/login/login.js" asp-append-version="true"></script>
</head>

<body class="uui-font uui-text" style="margin: 0; padding: 0; overflow: hidden">
Expand Down

0 comments on commit f031795

Please sign in to comment.