Skip to content

Commit 9ab9ff0

Browse files
authored
Merge pull request transloadit#15 from LexPredict/dev
little fix
2 parents 4080c86 + a84e299 commit 9ab9ff0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "uppy-build",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "Extensible JavaScript file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Instagram, Dropbox, Google Drive, S3 and more :dog:",
55
"lint-staged": {
66
"*.js": "eslint",

packages/@uppy/dashboard/src/components/PickerPanelTopBar.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,11 @@ function PanelTopBar (props) {
7777
}
7878

7979
const { duplicates, emptyFiles, deletePending } = props;
80+
// {!props.isAllComplete && !props.hideCancelButton ? (
8081

8182
return (
8283
<div class="uppy-DashboardContent-bar">
83-
{!props.isAllComplete && !props.hideCancelButton ? (
84+
{!props.isAllComplete ? (
8485
<button
8586
class="uppy-DashboardContent-back"
8687
type="button"

0 commit comments

Comments
 (0)