From cb220f2ea03137b5364fe0b71a87db4dc0609da7 Mon Sep 17 00:00:00 2001 From: Jared Goodwin Date: Wed, 26 Jul 2023 14:07:40 -0700 Subject: [PATCH] Remove test strings. --- Server/Components/Scripts/SavedScripts.razor.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Server/Components/Scripts/SavedScripts.razor.cs b/Server/Components/Scripts/SavedScripts.razor.cs index a9e4b5e0..1cfc9675 100644 --- a/Server/Components/Scripts/SavedScripts.razor.cs +++ b/Server/Components/Scripts/SavedScripts.razor.cs @@ -19,7 +19,7 @@ public partial class SavedScripts : AuthComponentBase [CascadingParameter] private ScriptsPage ParentPage { get; set; } = null!; - private SavedScript _selectedScript = new() { Name = "Test Script" }; + private SavedScript _selectedScript = new() { Name = string.Empty }; private string _alertMessage = string.Empty; private string _alertOptionsShowClass = string.Empty; private string _environmentVarsShowClass = string.Empty; @@ -74,7 +74,7 @@ public partial class SavedScripts : AuthComponentBase { _selectedScript = new() { - Name = "Test Script" + Name = string.Empty }; } @@ -95,7 +95,7 @@ public partial class SavedScripts : AuthComponentBase await ParentPage.RefreshScripts(); _selectedScript = new() { - Name = "Test Script" + Name = string.Empty }; } }