Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show all details on mobile when showProgressDetails is true #3174

Merged
merged 13 commits into from Sep 20, 2021
Merged
2 changes: 1 addition & 1 deletion .eslintrc.js
Expand Up @@ -85,7 +85,7 @@ module.exports = {
'no-param-reassign': ['warn'],
'no-redeclare': ['warn'],
'no-shadow': ['warn'],
'no-use-before-define': ['warn'],
'no-use-before-define': ['warn', { 'functions': false }],
'radix': ['warn'],
'react/button-has-type': 'error',
'react/destructuring-assignment': ['warn'],
Expand Down
1 change: 0 additions & 1 deletion BACKLOG.md
Expand Up @@ -50,7 +50,6 @@ PRs are welcome! Please do open an issue to discuss first if it's a big feature,
- [ ] Display data like image resolution on file cards. should be done by thumbnail generator maybe #783
- [ ] Possibility to edit/delete more than one file at once. example: add copyrigh info to 1000 files #118, #97
- [ ] Possibility to work on already uploaded / in progress files. We'll just provide the `fileId` to the `file-edit-complete` event so that folks can more easily roll out custom code for this themselves #112, #113, #2063
- [ ] Show upload speed too if `showProgressDetails: true`. Maybe have separate options for which things are displayed, or at least have css-classes that can be hidden with `display: none` #766
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't you check the box instead of removing the line?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As we have a huge backlog I figured removing might be best to unclutter things.

- [ ] Focus jumps weirdly if you remove a file https://github.com/transloadit/uppy/pull/2161#issuecomment-613565486
- [ ] A mini UI that features drop & progress (may involve a `mini: true` options for dashboard, may involve drop+progress or new plugin) (@arturi)
- [ ] Add a Load More button so you don't have to TAB endlessly to get to the upload button (https://github.com/transloadit/uppy/issues/1419)
Expand Down
5 changes: 0 additions & 5 deletions packages/@uppy/dashboard/src/style.scss
Expand Up @@ -705,11 +705,6 @@
height: 100%;
}

// Do not show progress details in the StatusBar if we do not have space.
.uppy-Dashboard:not(.uppy-size--md) .uppy-StatusBar-additionalInfo {
display: none;
}

.uppy-Dashboard-filesContainer {
@include clearfix;

Expand Down