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

D37537_In Plug in Solution Not able to add activity fixed #3596

Merged
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion Ginger/Ginger/AutomatePageLib/NewAutomatePage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ private void OnTargetApplicationChanged(object arg1, SelectionChangedEventArgs a
var userTA = mBusinessFlow.Activities.Select(f => f.TargetApplication);

// Iterate through the ApplicationAgents
foreach (var existingTargetApp in mBusinessFlow.TargetApplications)
foreach (var existingTargetApp in mBusinessFlow.TargetApplications.OfType<TargetApplication>())
prashelke marked this conversation as resolved.
Show resolved Hide resolved
{
// Check if the existing agent is not present in mBusinessFlow.TargetApplications
if (!userTA.Contains((existingTargetApp as TargetApplication).AppName))
Expand Down
Loading