Skip to content

Commit

Permalink
fix: increase max ras/txt size to 250KB
Browse files Browse the repository at this point in the history
  • Loading branch information
roedoejet committed Dec 13, 2024
1 parent 57e98bc commit 2e5216a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/studio-web/src/app/upload/upload.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ export class UploadComponent implements OnDestroy, OnInit {
contactLink = environment.packageJson.contact;
progressMode: ProgressBarMode = "indeterminate";
progressValue = 0;
maxTxtSizeKB = 30; // Max 30 KB plain text file size
maxRasSizeKB = 60; // Max 60 KB .readalong XML text size
maxTxtSizeKB = 250; // Max 250 KB plain text file size
maxRasSizeKB = 250; // Max 250 KB .readalong XML text size
@ViewChild("textInputElement") textInputElement: ElementRef;
@Output() stepChange = new EventEmitter<any[]>();

Expand Down

0 comments on commit 2e5216a

Please sign in to comment.