mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2026-01-04 21:58:39 -05:00
fix(watchlist): added missing prop for watchlist item removal button in watchlist page
This fix resolves a Watchlist page bug where the isAddedToWatchlist prop was missing. Without this prop, the removal button for watchlist items was absent. In this fix, the isAddedToWatchlist prop is re-added and set to true, allowing users to remove items from their local watchlist directly on the Watchlist page.
This commit is contained in:
@@ -46,6 +46,7 @@ const ListView = ({
|
|||||||
id={title.tmdbId}
|
id={title.tmdbId}
|
||||||
tmdbId={title.tmdbId}
|
tmdbId={title.tmdbId}
|
||||||
type={title.mediaType}
|
type={title.mediaType}
|
||||||
|
isAddedToWatchlist={true}
|
||||||
canExpand
|
canExpand
|
||||||
/>
|
/>
|
||||||
</li>
|
</li>
|
||||||
|
|||||||
Reference in New Issue
Block a user