First Nightly Fix (#2498)

This commit is contained in:
Joe Milazzo 2023-12-14 07:16:20 -06:00 committed by GitHub
parent d7734964e7
commit 11729892cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View File

@ -18,7 +18,7 @@ public class FilterV2Dto
public string? Name { get; set; }
public ICollection<FilterStatementDto> Statements { get; set; } = new List<FilterStatementDto>();
public FilterCombination Combination { get; set; } = FilterCombination.And;
public SortOptions SortOptions { get; set; }
public SortOptions? SortOptions { get; set; }
/// <summary>
/// Limit the number of rows returned. Defaults to not applying a limit (aka 0)

View File

@ -119,6 +119,8 @@ export class DashboardComponent implements OnInit {
loadDashboard() {
this.isLoadingDashboard = true;
this.streamsLoaded = 0;
this.streamCount = 0;
this.cdRef.markForCheck();
this.dashboardService.getDashboardStreams().subscribe(streams => {
this.streams = streams;

View File

@ -7,7 +7,7 @@
"name": "GPL-3.0",
"url": "https://github.com/Kareadita/Kavita/blob/develop/LICENSE"
},
"version": "0.7.11.2"
"version": "0.7.11.4"
},
"servers": [
{