ensure custom codes are stored uppercase
This commit is contained in:
parent
6f4044d812
commit
aae1463584
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ export default {
|
|||
this.onSave(
|
||||
this.identifier,
|
||||
this.title ? this.title : 'N/A',
|
||||
this.customCode.replace(/[^a-zA-Z0-9]/g, ''),
|
||||
this.customCode.replace(/[^a-zA-Z0-9]/g, '').toUpperCase(),
|
||||
);
|
||||
},
|
||||
onPaste(e) {
|
||||
|
|
Loading…
Reference in a new issue