diff --git a/site/.vuepress/components/CustomCodeModal.vue b/site/.vuepress/components/CustomCodeModal.vue index 686c7b9..59a9c96 100644 --- a/site/.vuepress/components/CustomCodeModal.vue +++ b/site/.vuepress/components/CustomCodeModal.vue @@ -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) {