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.
2 parents 57b06fe + 434501d commit a18f455Copy full SHA for a18f455
2 files changed
public/js/dnd.js
@@ -1,6 +1,6 @@
1
import React, { Component } from 'react';
2
3
-/**
+/**
4
* Drag n drop widget.
5
*/
6
export class DnD extends Component {
@@ -74,7 +74,7 @@ export class DnD extends Component {
74
}
75
76
var file = files[0];
77
- if (file.size > 10 * 1048576) {
+ if (file.size > 250 * 1048576) {
78
dndError('dnd-large-file');
79
return;
80
@@ -141,7 +141,7 @@ export class DnD extends Component {
141
style={{ display: 'none' }}>
142
<div
143
className="col-md-6 col-md-offset-3">
144
- Too big a file. Can only do less than 10 MB. >_<
+ Too big a file. Can only do less than 250 MB. >_<
145
</div>
146
147
0 commit comments