From 11729892cdf5bfcc0e92198a29da9e2c94b3abdf Mon Sep 17 00:00:00 2001 From: Joe Milazzo Date: Thu, 14 Dec 2023 07:16:20 -0600 Subject: [PATCH] First Nightly Fix (#2498) --- API/DTOs/Filtering/v2/FilterV2Dto.cs | 2 +- UI/Web/src/app/dashboard/_components/dashboard.component.ts | 2 ++ openapi.json | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/API/DTOs/Filtering/v2/FilterV2Dto.cs b/API/DTOs/Filtering/v2/FilterV2Dto.cs index 08757f98d..5bc50ff2f 100644 --- a/API/DTOs/Filtering/v2/FilterV2Dto.cs +++ b/API/DTOs/Filtering/v2/FilterV2Dto.cs @@ -18,7 +18,7 @@ public class FilterV2Dto public string? Name { get; set; } public ICollection Statements { get; set; } = new List(); public FilterCombination Combination { get; set; } = FilterCombination.And; - public SortOptions SortOptions { get; set; } + public SortOptions? SortOptions { get; set; } /// /// Limit the number of rows returned. Defaults to not applying a limit (aka 0) diff --git a/UI/Web/src/app/dashboard/_components/dashboard.component.ts b/UI/Web/src/app/dashboard/_components/dashboard.component.ts index 43b46d55c..c186e32f1 100644 --- a/UI/Web/src/app/dashboard/_components/dashboard.component.ts +++ b/UI/Web/src/app/dashboard/_components/dashboard.component.ts @@ -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; diff --git a/openapi.json b/openapi.json index f76271a1c..9ba598f7d 100644 --- a/openapi.json +++ b/openapi.json @@ -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": [ {