diff options
| author | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-08-01 14:58:33 +0300 |
|---|---|---|
| committer | Roy Ben Shabat <Roy.mail.net@gmail.com> | 2020-08-01 14:58:33 +0300 |
| commit | af0cef3da965c7cf6f58faad51788816f001490e (patch) | |
| tree | 08e756756451a976e809b2686b4fdacfcd57cdb9 /Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI | |
| parent | 178e25e4dba37decbcbc389955539997e0321df7 (diff) | |
| download | Tango-af0cef3da965c7cf6f58faad51788816f001490e.tar.gz Tango-af0cef3da965c7cf6f58faad51788816f001490e.zip | |
Fixed issue with wrong color catalog output due to liquid volumes not resetting.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI')
| -rw-r--r-- | Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/TFS/TeamMembersProvider.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/TFS/TeamMembersProvider.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/TFS/TeamMembersProvider.cs index 0691ca6bd..464599452 100644 --- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/TFS/TeamMembersProvider.cs +++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/TFS/TeamMembersProvider.cs @@ -13,7 +13,8 @@ namespace Tango.MachineStudio.UI.TFS { public IEnumerable GetSuggestions(string filter) { - return TangoIOC.Default.GetInstance<TeamFoundationServiceExtendedClient>().Project.Members.Where(x => x.AssignName.ToLower().Contains(filter.ToLower())); + var members = TangoIOC.Default.GetInstance<TeamFoundationServiceExtendedClient>().Project.Members; + return members.Where(x => x.AssignName.ToLower().Contains(filter.ToLower())); } } } |
