Fix ready border condition on watchlist cards
This commit is contained in:
+1
-1
@@ -709,7 +709,7 @@ WATCHLIST_HTML = r"""<!doctype html>
|
||||
}
|
||||
|
||||
function watchlistCardClassName(item) {
|
||||
const isFullyReady = item.category === "finished" && item.sub_complete && item.dub_complete;
|
||||
const isFullyReady = item.sub_complete && item.dub_complete;
|
||||
return `anime-card${item.status === "error" ? " error" : ""}${isFullyReady ? " fully-ready" : ""}`;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user