Skip to content

Commit

Permalink
fix: FE error thrown on first load of /statistics page from Syncfusio…
Browse files Browse the repository at this point in the history
…n package; details below:

- The cause was the Syncfusion static web asset being used
- Additional notes:
	- The Syncfusion FE assets are intentionally out of sync with the NuGet package to fix the runtime error and prevent a licensing error occurring in later versions
	- Future update should reference the static web asset from the NuGet package instead of the CDN to couple the versions
- see: microsoft#530
	- Relevant issue: https://www.syncfusion.com/forums/179195/json-convert-error-after-upgrade-from-20-3-0-47
  • Loading branch information
AlexCheongIE committed Aug 21, 2024
1 parent a8c2971 commit bbc55fb
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,15 @@
<link href="css/bootstrap/bootstrap.min.css" rel="stylesheet" />
<link href="css/app.css" rel="stylesheet" />
<link href="Cloud5mins.ShortenerTools.TinyBlazorAdmin.styles.css?version=0.1" rel="stylesheet" />
<link href="https://cdn.syncfusion.com/blazor/20.1.51/styles/bootstrap5.css" rel="stylesheet"/>
<link href="https://cdn.syncfusion.com/blazor/20.3.61/styles/bootstrap5.css" rel="stylesheet" />

<link rel="icon" href="/favicon.ico">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<script src="https://cdn.syncfusion.com/blazor/20.1.51/syncfusion-blazor.min.js" type="text/javascript"></script>
<!-- Version 20.3.61 is known to be out of sync with the NuGet version -->
<script src="https://cdn.syncfusion.com/blazor/20.3.61/syncfusion-blazor.min.js" type="text/javascript"></script>


</head>

<body>
Expand Down

0 comments on commit bbc55fb

Please sign in to comment.