Fix FileDragAndDropDialog merge mistake

This commit is contained in:
Brett Sun 2016-02-08 10:40:46 +01:00
parent a4292f09c3
commit 91f9e83e81
1 changed files with 12 additions and 12 deletions

View File

@ -102,19 +102,19 @@ let FileDragAndDropDialog = React.createClass({
</span>)
];
}
return (
<div className="file-drag-and-drop-dialog">
<div className="hidden-print">
{dialogElement}
</div>
{/* Hide the uploader and just show that there's been on files uploaded yet when printing */}
<p className="text-align-center visible-print">
{getLangText('No files uploaded')}
</p>
</div>
);
}
return (
<div className="file-drag-and-drop-dialog">
<div className="hidden-print">
{dialogElement}
</div>
{/* Hide the uploader and just show that there's been on files uploaded yet when printing */}
<p className="text-align-center visible-print">
{getLangText('No files uploaded')}
</p>
</div>
);
}
});