Fix ready border condition on watchlist cards

This commit is contained in:
Dymas
2026-05-17 21:49:27 +02:00
parent 91b1e36a94
commit 5c4f251fa6
6 changed files with 10 additions and 6 deletions
+1 -1
View File
@@ -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" : ""}`;
}