Skip to content

Commit

Permalink
Remove test strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
bitbound committed Jul 26, 2023
1 parent 459c63f commit cb220f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Server/Components/Scripts/SavedScripts.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down Expand Up @@ -74,7 +74,7 @@ private void CreateNew()
{
_selectedScript = new()
{
Name = "Test Script"
Name = string.Empty
};
}

Expand All @@ -95,7 +95,7 @@ private async Task DeleteSelectedScript()
await ParentPage.RefreshScripts();
_selectedScript = new()
{
Name = "Test Script"
Name = string.Empty
};
}
}
Expand Down

0 comments on commit cb220f2

Please sign in to comment.