Skip to content

Commit

Permalink
Merge pull request #630 from Blazam-App/v1-0-8
Browse files Browse the repository at this point in the history
Fix for news button not "silencing" after acknowledging last unread n…
  • Loading branch information
jacobsen9026 authored Nov 2, 2024
2 parents a6696cc + 3fa07f8 commit f7eb3f9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BLAZAM/BLAZAM.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<ServerGarbageCollection>false</ServerGarbageCollection>
<AssemblyVersion>1.0.7</AssemblyVersion>
<Version>2024.11.02.2021</Version>
<Version>2024.11.02.2234</Version>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<RootNamespace>BLAZAM</RootNamespace>
<GenerateDocumentationFile>False</GenerateDocumentationFile>
Expand Down
6 changes: 5 additions & 1 deletion BLAZAMGui/UI/Outputs/ApplicationNewsProvider.razor
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@
</MudText>
@foreach (var item in unreadItems.OrderByDescending(x => x.UpdatedAt))
{
<ApplicationNewsItem Item=item Read=false />
<ApplicationNewsItem Item=item
Read=false
OnRead="@(()=>{
RefreshItems();
})" />

}
@if (showRead)
Expand Down

0 comments on commit f7eb3f9

Please sign in to comment.