B2022-140 – remove any preceding space characters in the ROID string. This was causing an error and preventing the RO text search results dropdown list from clearing when a linked RO was selected.

This commit is contained in:
John Jenko 2022-11-29 17:01:42 +00:00
parent 05febce599
commit 8e3ed34c01

View File

@ -426,6 +426,7 @@ namespace VEPROMS.CSLA.Library
roid = string.Format("{0}00000000", roid).Substring(0, 12) + "0041";
}
roid = roid.TrimStart(); //B2022-140 remove any preceding spaces
}
return roid;