encode PWA Script

This commit is contained in:
Shaun Walker 2021-12-22 15:52:31 -05:00
parent c21a097fd2
commit cde271fd5b

View File

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