Increases max characters for initials to 6, to support user IDs

This commit is contained in:
Aaron Louie 2020-11-16 11:11:56 -05:00
parent 4ec9c8e16e
commit e2841e3352
1 changed files with 3 additions and 3 deletions

View File

@ -40,9 +40,9 @@ export const defaultOptions: AppDefaultsOptions = {
countsCollection: 'counts', // Name of collection for Line Counts in Firebase.
dateDisplayFormat: 'MM/dd/yyyy, hh:mm aa', // Format for dates when displayed to user.
dateEncodedFormat: 'yyyyMMddHHmm', // Format for dates when encoded in IDs for database records.
initialsLength: 5,
initialsRegExp: /^[a-zA-Z]{2,5}$/,
labelLayout: labelLayouts.circle_qrcode_single, // Which label layout to use for printing. Can be overridden by user setting.
initialsLength: 6,
initialsRegExp: /^[a-zA-Z]{2,6}$/,
labelLayout: labelLayouts.circle_qrcode_single, // Which label layout to use for printing. Can be overridden by user setting.
lineCountRegExp: /^[\d]{4}-[\d]{12}$/, // ID format for Line Count records.
locationId: '0000', // Default location ID. Can be overridden by user setting.
locationIdRegExp: /^[\d]{4}$/, // ID format for Line Count records.