Added code to assure length of OldStepSequence does not exceed 32 characters
This commit is contained in:
parent
192b212472
commit
34ae254319
@ -135,6 +135,8 @@ namespace VEPROMS.CSLA.Library
|
|||||||
if (_OldStepSequence != value)
|
if (_OldStepSequence != value)
|
||||||
{
|
{
|
||||||
_OldStepSequence = value;
|
_OldStepSequence = value;
|
||||||
|
if (_OldStepSequence.Length > 32)
|
||||||
|
_OldStepSequence = _OldStepSequence.Substring(0, 32);
|
||||||
PropertyHasChanged();
|
PropertyHasChanged();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user