fix(文件管理): 文件上传限制提示语修改

--bug=1047313 --user=宋昌昌 【文件管理】-文件管理中上传超出大小限制的文件,提示语没有同步改动,依然用的是50MB大小限制 https://www.tapd.cn/55049933/s/1605388
This commit is contained in:
song-cc-rock 2024-11-04 16:32:09 +08:00 committed by Craftsman
parent c75ee4104b
commit 6012983463
1 changed files with 0 additions and 4 deletions

View File

@ -383,10 +383,6 @@ export default {
if (!this.fileValidator(file)) {
return false;
}
if (file.size / 1024 / 1024 > 50) {
this.$warning(this.$t("api_test.request.body_upload_limit_size"));
return false;
}
return true;
},
handleUpload(uploadResources) {