diff --git a/resources/views/components/torrent/row.blade.php b/resources/views/components/torrent/row.blade.php
index ee1188e508..50bcdb73ba 100644
--- a/resources/views/components/torrent/row.blade.php
+++ b/resources/views/components/torrent/row.blade.php
@@ -19,6 +19,7 @@
data-category-id="{{ $torrent->category_id }}"
data-type-id="{{ $torrent->type_id }}"
data-resolution-id="{{ $torrent->resolution_id }}"
+ wire:key="torrent-search-row-{{ $torrent->id }}"
>
@if (auth()->user()->show_poster == 1)
@@ -141,7 +142,7 @@ class="torrent-search--list__edit form__standard-icon-button"
@endif
- @livewire('small-bookmark-button', ['torrent' => $torrent, 'isBookmarked' => $torrent->bookmarks_exists, 'user' => auth()->user()], key('torrent-'.$torrent->id))
+ @livewire('small-bookmark-button', ['torrent' => $torrent, 'isBookmarked' => $torrent->bookmarks_exists, 'user' => auth()->user()], key('bookmark-torrent-'.$torrent->id))
@if (config('torrent.download_check_page'))
isBookmarked)
-
-@else
-
-@endif
+ @endif
+
|