Skip to content

Commit

Permalink
Merge pull request #711 from tadast/tt/bigger-chunks
Browse files Browse the repository at this point in the history
Allow bigger sequence queries
  • Loading branch information
yannickwurm authored Dec 20, 2023
2 parents 57b06fe + 434501d commit a18f455
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions public/js/dnd.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { Component } from 'react';

/**
/**
* Drag n drop widget.
*/
export class DnD extends Component {
Expand Down Expand Up @@ -74,7 +74,7 @@ export class DnD extends Component {
}

var file = files[0];
if (file.size > 10 * 1048576) {
if (file.size > 250 * 1048576) {
dndError('dnd-large-file');
return;
}
Expand Down Expand Up @@ -141,7 +141,7 @@ export class DnD extends Component {
style={{ display: 'none' }}>
<div
className="col-md-6 col-md-offset-3">
Too big a file. Can only do less than 10 MB. &gt;_&lt;
Too big a file. Can only do less than 250 MB. &gt;_&lt;
</div>
</div>

Expand Down
Loading

0 comments on commit a18f455

Please sign in to comment.