Skip to content

Commit

Permalink
Merge pull request #3606 from Ginger-Automation/BugFix/39087-NoPopupT…
Browse files Browse the repository at this point in the history
…oSaveDirtyVirtualRunset

BugFix - 39087 - Virtual Runset Not Showing As Dirty
  • Loading branch information
Maheshkale447 authored Apr 11, 2024
2 parents e4ba381 + 42a6b46 commit 4467c2e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Ginger/Ginger/Run/RunSetsExecutionsHistoryPage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -498,6 +498,10 @@ private void LoadRunsetButton_Click(object sender, RoutedEventArgs e)
{
LoadRunsetEventHandler? handler = LoadRunset;
handler?.Invoke(runset);
if (runset.IsVirtual)
{
runset.DirtyStatus = Amdocs.Ginger.Common.Enums.eDirtyStatus.Modified;
}
});
}
catch(Exception ex)
Expand Down

0 comments on commit 4467c2e

Please sign in to comment.