Fixed cloud artifact encode issue

This commit is contained in:
Peng-YM 2022-06-09 15:53:07 +08:00
parent 9e50f1b75a
commit 1c5903cda1
2 changed files with 2 additions and 2 deletions

View File

@ -359,7 +359,7 @@ export default {
} }
function isPlainName(name) { function isPlainName(name) {
return /^[\w-_]*$/.test(name); return /^[0-9a-zA-Z-_]*$/.test(name);
} }
</script> </script>

View File

@ -280,7 +280,7 @@ export default {
} }
function isPlainName(name) { function isPlainName(name) {
return /^[\w-_]*$/.test(name); return /^[0-9a-zA-Z-_]*$/.test(name);
} }
</script> </script>