make component search case insensitive
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
25bcb2b0f8
commit
9212aa5bcb
|
@ -317,7 +317,7 @@ namespace Encompass
|
|||
{
|
||||
foreach (var type in TypeToIndex.Keys)
|
||||
{
|
||||
if (type.ToString().Contains(typeString))
|
||||
if (type.ToString().ToLower().Contains(typeString.ToLower()))
|
||||
{
|
||||
yield return type;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue