Merge pull request #1896 from sbwalker/dev

encode PWA Script
This commit is contained in:
Shaun Walker 2021-12-22 15:43:13 -05:00 committed by GitHub
commit 8408f98693
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,7 +17,7 @@
<script src="js/app.js"></script>
<script src="js/loadjs.min.js"></script>
<link rel="stylesheet" href="css/app.css" />
@Html.Raw(@Model.HeadResources)
@Html.Raw(Model.HeadResources)
</head>
<body>
@(Html.AntiForgeryToken())
@ -48,8 +48,8 @@
}
@if (!string.IsNullOrEmpty(Model.PWAScript))
{
@Model.PWAScript
@Html.Raw(Model.PWAScript)
}
@Html.Raw(@Model.BodyResources)
@Html.Raw(Model.BodyResources)
</body>
</html>