aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-11-21 16:36:00 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-11-21 16:36:00 +0200
commitb7962172b35452ba226cbc7d9bb5fc9afdbd5ecb (patch)
tree11ff6db191cc6b86381e39da283c872c8460efd4 /Software/Visual_Studio
parenta9c3aaed4d5c007f138bfc16f05aecdee73f1268 (diff)
downloadTango-b7962172b35452ba226cbc7d9bb5fc9afdbd5ecb.tar.gz
Tango-b7962172b35452ba226cbc7d9bb5fc9afdbd5ecb.zip
Fixed issue with GetSupportedIdsPacks
Diffstat (limited to 'Software/Visual_Studio')
-rw-r--r--Software/Visual_Studio/Tango.BL/EntitiesExtensions/Configuration.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Tango.BL/EntitiesExtensions/Configuration.cs b/Software/Visual_Studio/Tango.BL/EntitiesExtensions/Configuration.cs
index bff4ddbb6..81add0eae 100644
--- a/Software/Visual_Studio/Tango.BL/EntitiesExtensions/Configuration.cs
+++ b/Software/Visual_Studio/Tango.BL/EntitiesExtensions/Configuration.cs
@@ -26,7 +26,7 @@ namespace Tango.BL.Entities
throw new NullReferenceException("The specified RML cannot be null.");
}
- return NoneEmptyIdsPacks.Where(x => rml.LiquidTypesRmls.ToList().Exists(y => y.LiquidType == x.LiquidType)).OrderBy(x => x.PackIndex).ToList();
+ return NoneEmptyIdsPacks.Where(x => rml.LiquidTypesRmls.ToList().Exists(y => y.LiquidType.Guid == x.LiquidType.Guid)).OrderBy(x => x.PackIndex).ToList();
}
public override void DefferedDelete(ObservablesContext context)