Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
eamahanna committed Oct 23, 2020
1 parent 741fa53 commit e1baef8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ define([
.on('success', (file, serverResponse) => {
var $successElem = $(file.previewElement);
$successElem.find('#upload_progress_and_cancel').remove();
$successElem.find('#dz_file_row_1'.css({"display": "flex", "align-items": "center"}));
$successElem.find('#dz_file_row_1').css({"display": "flex", "align-items": "center"});
$successElem.find('#success_icon').css('display', 'flex');
$successElem.find('#success_message').css('display', 'inline');
$dropzoneElem.find('#upload-message').text(this.makeUploadMessage());
Expand Down Expand Up @@ -130,7 +130,7 @@ define([
.on('error', (erroredFile) => {
var $errorElem = $(erroredFile.previewElement);
$errorElem.find('#upload_progress_and_cancel').remove();
$errorElem.find('#dz_file_row_1'.css({"display": "flex", "align-items": "center"}));
$errorElem.find('#dz_file_row_1').css({"display": "flex", "align-items": "center"});
$errorElem.css('color', '#DF0002');
$errorElem.find('#error_icon').css('display', 'flex');

Expand Down
2 changes: 1 addition & 1 deletion src/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -379,7 +379,7 @@
"upload": {
"timeout": 0,
"parallel_uploads": 10,
"max_file_size": 20480,
"max_file_size": 1,
"globus_upload_url": "https://app.globus.org/file-manager?destination_id=c3c0a65f-5827-4834-b6c9-388b0b19953a"
},
"use_local_widgets": true,
Expand Down

0 comments on commit e1baef8

Please sign in to comment.