Fixed cloud artifact encode issue

This commit is contained in:
Peng-YM
2022-06-09 15:53:07 +08:00
parent f6237c8f58
commit 7e1de6e49f
2 changed files with 2 additions and 2 deletions

View File

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

View File

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