B2018-109 Fixed Tool Tip error on procedure that began with a space, in the Consistency Check dialog
This commit is contained in:
@@ -539,7 +539,7 @@ namespace VEPROMS
|
||||
{
|
||||
int d = s.IndexOf(" - ");
|
||||
if (d > -1)
|
||||
s = s.Substring(0, d).Trim();
|
||||
s = s.Substring(0, d); //B2018-109 remvoed the call ".Trim()". had a procedure that began with a space and was being used as such everywhere else in the approveal logic
|
||||
return s;
|
||||
}
|
||||
private void btnCheckMore_Click(object sender, EventArgs e)
|
||||
|
Reference in New Issue
Block a user