Skip to content

Commit

Permalink
增大在线导入自定义源文件的大小限制问题(#1857
Browse files Browse the repository at this point in the history
  • Loading branch information
lyswhut committed Apr 23, 2024
1 parent a977458 commit 10028cf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions publish/changeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### 修复

- 修复存在多级弹窗时的背景显示问题
- 增大在线导入自定义源文件的大小限制问题(#1857

### 变更

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default {
this.disabled = false
this.btnText = this.$t('user_api_import_online__input_confirm')
}
if (script.length > 90000) {
if (script.length > 3_000_000) {
void dialog(this.$t('user_api_import__failed', { message: 'Too large script' }))
return
}
Expand Down

0 comments on commit 10028cf

Please sign in to comment.