fix(ui): raise file open line limit to 20k lines

This commit is contained in:
gaojunran
2026-08-27 12:56:56 +08:00
parent 2a1c10cb3e
commit d495771cee
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
export const MAX_OPEN_FILE_LINES = 5_000;
export const MAX_OPEN_FILE_LINES = 20_000;
export const countLinesWithLimit = (content: string, limit: number): number => {
if (!content) {