Fix errors with relationships loading

This commit is contained in:
DariusIII
2026-01-24 08:35:17 +01:00
parent a943fdafb6
commit 69c2e37557
6 changed files with 14 additions and 14 deletions
+2 -2
View File
@@ -107,9 +107,9 @@
<i class="fa fa-book text-4xl text-gray-400"></i>
</div>
@endif
@if(!empty($result->failed) && $result->failed > 0)
@if(!empty($result->failed_count) && $result->failed_count > 0)
<div class="absolute top-2 right-2">
<span class="px-2 py-1 bg-red-600 dark:bg-red-700 text-white text-xs rounded-full shadow-lg" title="{{ $result->failed }} user(s) reported download failure">
<span class="px-2 py-1 bg-red-600 dark:bg-red-700 text-white text-xs rounded-full shadow-lg" title="{{ $result->failed_count }} user(s) reported download failure">
<i class="fa fa-exclamation-triangle mr-1"></i>Failed
</span>
</div>