From b038a58fa24bdae0424f07b069c415af0ac14423 Mon Sep 17 00:00:00 2001 From: Jason Dove <1695733+jasongdove@users.noreply.github.com> Date: Tue, 15 Aug 2023 15:53:56 -0500 Subject: [PATCH] fix saving smart collection (#1384) --- ErsatzTV/Shared/SaveAsSmartCollectionDialog.razor | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ErsatzTV/Shared/SaveAsSmartCollectionDialog.razor b/ErsatzTV/Shared/SaveAsSmartCollectionDialog.razor index 3f11cf7fb..5f6bb79d7 100644 --- a/ErsatzTV/Shared/SaveAsSmartCollectionDialog.razor +++ b/ErsatzTV/Shared/SaveAsSmartCollectionDialog.razor @@ -45,7 +45,7 @@ private readonly SmartCollectionViewModel _newCollection = new(-1, "(New Collection)", string.Empty); private string _newCollectionName; - private List _collections; + private List _collections = new(); private SmartCollectionViewModel _selectedCollection;