Skip to content

Commit 55e4536

Browse files
author
Joe Niemi
authored
Merge pull request #1957 from HSLdevcom/1956_stop_name_max_length_to_20
StopArea name max length is now 20
2 parents 97eed74 + 1424515 commit 55e4536

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/models/validationModels/stopAreaValidationModel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { IStopArea } from '..';
22

3-
const nameRule = 'required|min:1|max:16|string';
3+
const nameRule = 'required|min:1|max:20|string';
44

55
type IStopAreaValidationModel = { [key in keyof IStopArea]: string };
66

0 commit comments

Comments
 (0)