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

more Download Queue info #138

Merged
merged 4 commits into from
Mar 3, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add back state and % data
  • Loading branch information
Robonau committed Feb 25, 2022
commit 776a3ac9c175c1a25d3e6ee2042ce972aa6f7d7e
4 changes: 3 additions & 1 deletion src/screens/DownloadQueue.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,9 @@ export default function DownloadQueue() {
{item.manga.title}
</Typography>
<Typography variant="caption" display="block" gutterBottom>
{item.chapter.name}
{`${item.chapter.name} `
+ `(${(item.progress * 100).toFixed(2)}%)`
+ ` => state: ${item.state}`}
</Typography>
</Box>
</Box>
Expand Down