Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Allow bigger sequence queries #711

Merged
merged 1 commit into from
Dec 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading