B2018-109 Fixed Tool Tip error on procedure that began with a space, in the Consistency Check dialog

This commit is contained in:
2018-07-30 15:17:01 +00:00
parent 5bf50a92df
commit 8f180f14d2
2 changed files with 4 additions and 1 deletions

View File

@@ -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)