ensure custom codes are stored uppercase

This commit is contained in:
Matteias Collet 2022-02-22 03:52:21 +00:00 committed by GitHub
parent 6f4044d812
commit aae1463584

View file

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