Skip to content

Commit

Permalink
feat: increase the text file size limits
Browse files Browse the repository at this point in the history
Since we are monitoring backend use on heroku, we can increase the text
file size limit and adjust if something goes wrong.
It will be convenient to be able to process larger files on the web app.
  • Loading branch information
joanise committed Nov 17, 2023
1 parent ae9044c commit be35385
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 @@ -70,8 +70,8 @@ export class UploadComponent implements OnDestroy, OnInit {
contactLink = environment.packageJson.contact;
progressMode: ProgressBarMode = "indeterminate";
progressValue = 0;
maxTxtSizeKB = 10; // Max 10 KB plain text file size
maxRasSizeKB = 20; // Max 20 KB .readalong XML text size
maxTxtSizeKB = 30; // Max 30 KB plain text file size
maxRasSizeKB = 60; // Max 60 KB .readalong XML text size
@ViewChild("textInputElement") textInputElement: ElementRef;
@Output() stepChange = new EventEmitter<any[]>();
public uploadFormGroup = this._formBuilder.group({
Expand Down

0 comments on commit be35385

Please sign in to comment.