mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 01:25:17 +01:00
increase otherdata limit to 50MB
This commit is contained in:
parent
440dcd9785
commit
411b7cb010
@ -43,7 +43,7 @@ let FurtherDetailsFileuploader = React.createClass({
|
||||
|
||||
return (
|
||||
<Property
|
||||
label="Additional files (max. 10MB)">
|
||||
label="Additional files (max. 50MB per file)">
|
||||
<ReactS3FineUploader
|
||||
uploadStarted={this.props.uploadStarted}
|
||||
keyRoutine={{
|
||||
@ -57,7 +57,7 @@ let FurtherDetailsFileuploader = React.createClass({
|
||||
}}
|
||||
validation={{
|
||||
itemLimit: 100000,
|
||||
sizeLimit: '10000000'
|
||||
sizeLimit: '50000000'
|
||||
}}
|
||||
submitKey={this.props.submitKey}
|
||||
setIsUploadReady={this.props.setIsUploadReady}
|
||||
|
@ -270,7 +270,7 @@ let FileUploader = React.createClass({
|
||||
}}
|
||||
validation={{
|
||||
itemLimit: 100000,
|
||||
sizeLimit: '10000000'
|
||||
sizeLimit: '50000000'
|
||||
}}
|
||||
session={{
|
||||
endpoint: ApiUrls.ownership_loans_contract,
|
||||
|
@ -30,7 +30,7 @@ export function getLangText(s, ...args) {
|
||||
} catch(err) {
|
||||
//if(!(s in languages[lang])) {
|
||||
//console.warn('Language-string is not in constants file. Add: "' + s + '" to the "' + lang + '" language file. Defaulting to keyname');
|
||||
return s;
|
||||
return formatText(s, args);
|
||||
//} else {
|
||||
// console.error(err);
|
||||
//}
|
||||
|
Loading…
Reference in New Issue
Block a user