Skip to content

Commit 2e5216a

Browse files
committed
fix: increase max ras/txt size to 250KB
1 parent 57e98bc commit 2e5216a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/studio-web/src/app/upload/upload.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ export class UploadComponent implements OnDestroy, OnInit {
5959
contactLink = environment.packageJson.contact;
6060
progressMode: ProgressBarMode = "indeterminate";
6161
progressValue = 0;
62-
maxTxtSizeKB = 30; // Max 30 KB plain text file size
63-
maxRasSizeKB = 60; // Max 60 KB .readalong XML text size
62+
maxTxtSizeKB = 250; // Max 250 KB plain text file size
63+
maxRasSizeKB = 250; // Max 250 KB .readalong XML text size
6464
@ViewChild("textInputElement") textInputElement: ElementRef;
6565
@Output() stepChange = new EventEmitter<any[]>();
6666

0 commit comments

Comments
 (0)