mirror of
https://github.com/sct/overseerr.git
synced 2025-09-27 20:42:03 +02:00
fix(ui): add alt prop to studio/network logos & fix blinking text cursor (#1095)
This commit is contained in:
@@ -49,9 +49,9 @@ const DiscoverTvNetwork: React.FC = () => {
|
|||||||
{firstResultData?.network.logoPath ? (
|
{firstResultData?.network.logoPath ? (
|
||||||
<div className="flex justify-center mb-6">
|
<div className="flex justify-center mb-6">
|
||||||
<img
|
<img
|
||||||
src={`//image.tmdb.org/t/p/w780_filter(negate,000,666)/${firstResultData?.network.logoPath}`}
|
src={`//image.tmdb.org/t/p/w780_filter(negate,000,666)/${firstResultData.network.logoPath}`}
|
||||||
alt=""
|
alt={firstResultData.network.name}
|
||||||
className="text-white max-h-24 sm:max-h-32"
|
className="max-h-24 sm:max-h-32"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
|
@@ -49,9 +49,9 @@ const DiscoverMovieStudio: React.FC = () => {
|
|||||||
{firstResultData?.studio.logoPath ? (
|
{firstResultData?.studio.logoPath ? (
|
||||||
<div className="flex justify-center mb-6">
|
<div className="flex justify-center mb-6">
|
||||||
<img
|
<img
|
||||||
src={`//image.tmdb.org/t/p/w780_filter(negate,000,666)/${firstResultData?.studio.logoPath}`}
|
src={`//image.tmdb.org/t/p/w780_filter(negate,000,666)/${firstResultData.studio.logoPath}`}
|
||||||
alt=""
|
alt={firstResultData.studio.name}
|
||||||
className="text-white max-h-24 sm:max-h-32"
|
className="max-h-24 sm:max-h-32"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
) : (
|
) : (
|
||||||
|
Reference in New Issue
Block a user