Browse Source

use cache busting to avoid ui errors after upgrading mudblazor (#2016)

pull/2017/head
Jason Dove 4 weeks ago committed by GitHub
parent
commit
c8f5b51d93
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      CHANGELOG.md
  2. 3
      ErsatzTV/Pages/_Host.cshtml

1
CHANGELOG.md

@ -23,6 +23,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). @@ -23,6 +23,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- Fix UI crashes when channel numbers contain a period `.` in locales that have a different decimal separator (e.g. `,`)
- Fix playout detail table to only reload once when resetting a playout
- Fix date formatting in playout detail table on reload (will now respect browser's `Accept-Language` header)
- Use cache busting to avoid UI errors after upgrading the MudBlazor library
## [25.1.0] - 2025-01-10
### Added

3
ErsatzTV/Pages/_Host.cshtml

@ -1,4 +1,5 @@ @@ -1,4 +1,5 @@
@page "/"
@using System.Reflection
@namespace ErsatzTV.Pages
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@{
@ -102,7 +103,7 @@ @@ -102,7 +103,7 @@
</div>
<script src="_framework/blazor.server.js"></script>
<script src="_content/MudBlazor/MudBlazor.min.js"></script>
<script src="_content/MudBlazor/MudBlazor.min.js?v=@(Assembly.GetAssembly(typeof(MudBlazor.AbstractLocalizationInterceptor))?.GetName().Version?.ToString())"></script>
<script type="text/javascript">
window.blazorHelpers = {
scrollToFragment: (elementId) => {

Loading…
Cancel
Save