add EmptyView to DownloadQueue, refactro strings (#53)

* Added the Emty view message in the /download path

* Changed a few expression to template string
This commit is contained in:
abhijeetChawla
2021-10-29 17:51:10 +05:30
committed by GitHub
parent e9236f3a61
commit c91cc508f4
4 changed files with 11 additions and 21 deletions

View File

@@ -149,10 +149,7 @@ export default function ChapterCard(props: IProps) {
{!chapter.bookmarked && 'Bookmark'}
</MenuItem>
<MenuItem onClick={() => sendChange('read', !chapter.read)}>
Mark as
{' '}
{chapter.read && 'unread'}
{!chapter.read && 'read'}
{`Mark as ${chapter.read && 'unread'} ${!chapter.read && 'read'}`}
</MenuItem>
<MenuItem onClick={() => sendChange('markPrevRead', true)}>
Mark previous as Read