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:
parent
05febce599
commit
8e3ed34c01
@ -426,6 +426,7 @@ namespace VEPROMS.CSLA.Library
|
|||||||
|
|
||||||
roid = string.Format("{0}00000000", roid).Substring(0, 12) + "0041";
|
roid = string.Format("{0}00000000", roid).Substring(0, 12) + "0041";
|
||||||
}
|
}
|
||||||
|
roid = roid.TrimStart(); //B2022-140 remove any preceding spaces
|
||||||
}
|
}
|
||||||
|
|
||||||
return roid;
|
return roid;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user