Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug fix/44161 Remote exection history multi delete button #4027

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Ginger/Ginger/Run/RunSetsExecutionsHistoryPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public partial class RunSetsExecutionsHistoryPage : Page
private readonly RunsetFromReportLoader _runsetFromReportLoader;

ObservableList<RunSetReport> mExecutionsHistoryList = [];
ExecutionLoggerHelper executionLoggerHelper = new ExecutionLoggerHelper();
ExecutionLoggerHelper executionLoggerHelper = new();

private HttpClient? _httpClient;
private Task<GraphQLResponse<GraphQLRunsetResponse>> response;
Expand Down Expand Up @@ -772,7 +772,11 @@ private void DeleteAllSelectedExecutionResults(object sender, RoutedEventArgs e)

private void DeleteExecutionReports(System.Collections.IList runSetReports)
{
bool remoteDeletionFlag = false;
if ((bool)remoteRadioButton.IsChecked)
{
Reporter.ToUser(eUserMsgKey.RemoteExecutionResultsCannotBeAccessed);
return;
}
foreach (RunSetReport runSetReport in runSetReports)
{
if (runSetReport.DataRepMethod == ExecutionLoggerConfiguration.DataRepositoryMethod.LiteDB)
Expand All @@ -789,11 +793,7 @@ private void DeleteExecutionReports(System.Collections.IList runSetReports)
string runSetFolder = executionLoggerHelper.GetLoggerDirectory(runSetReport.LogFolder);
TextFileRepository.DeleteLocalData(runSetFolder);
}
else if ((bool)remoteRadioButton.IsChecked)
{
Reporter.ToUser(eUserMsgKey.RemoteExecutionResultsCannotBeAccessed);
remoteDeletionFlag = true;
}

}

if (xGridExecutionsHistory.Grid.SelectedItems.Count > 0)
Expand Down
Loading