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