We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d572ad commit e313fedCopy full SHA for e313fed
1 file changed
packages/studio-web/src/app/upload/upload.component.ts
@@ -67,7 +67,8 @@ export class UploadComponent implements OnInit {
67
// Max plain text file size: 40KB is OK but takes around 15-20s on Heroku
68
private maxTxtSizeKB = 40;
69
// Max .readalong XML text size: text * 5 is a rough heuristic; the XML is much bloated from the text.
70
- private maxRasSizeKB = 200;
+ // Later bumped to 400 to accommodate a real life use case.
71
+ private maxRasSizeKB = 400;
72
private currentToast: number;
73
@ViewChild("textFileUpload")
74
private textFileUpload: ElementRef<HTMLFormElement>;
0 commit comments