Skip to content

Commit 75f46a3

Browse files
committed
Update JS
1 parent 48a68df commit 75f46a3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/web/assets/cp/src/js/LinkInput.js

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/** global: Craft */
22
/** global: Garnish */
3+
const punycode = require('punycode/');
4+
35
/**
46
* Handle Generator
57
*/
@@ -148,6 +150,7 @@ Craft.LinkInput = Garnish.Base.extend(
148150
},
149151

150152
validate: function (value) {
153+
value = punycode.toASCII(value);
151154
return !!value.match(new RegExp(this.settings.pattern, 'i'));
152155
},
153156

0 commit comments

Comments
 (0)