mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 17:13:49 -07:00
When a new episode is grabbed the client will update its status
This commit is contained in:
parent
bcb13f93ff
commit
c1b68e0dee
7 changed files with 101 additions and 18 deletions
|
@ -40,7 +40,12 @@ define(
|
|||
return this;
|
||||
}
|
||||
else {
|
||||
if (!this.model.get('airDateUtc')) {
|
||||
if (this.model.get('downloading')) {
|
||||
icon = 'icon-download-alt';
|
||||
tooltip = 'Episode is downloading';
|
||||
}
|
||||
|
||||
else if (!this.model.get('airDateUtc')) {
|
||||
icon = 'icon-question-sign';
|
||||
tooltip = 'TBA';
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue