mirror of
https://git.mirrors.martin98.com/https://github.com/sub-store-org/Sub-Store.git
synced 2026-03-31 23:43:16 +08:00
Fixed cloud artifact encode issue
This commit is contained in:
@@ -359,7 +359,7 @@ export default {
|
||||
}
|
||||
|
||||
function isPlainName(name) {
|
||||
return /^[\w-_]*$/.test(name);
|
||||
return /^[0-9a-zA-Z-_]*$/.test(name);
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
@@ -280,7 +280,7 @@ export default {
|
||||
}
|
||||
|
||||
function isPlainName(name) {
|
||||
return /^[\w-_]*$/.test(name);
|
||||
return /^[0-9a-zA-Z-_]*$/.test(name);
|
||||
}
|
||||
</script>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user