Skip to content

Commit

Permalink
Fix overlapping labels
Browse files Browse the repository at this point in the history
Had two sets of overlaps, first with GHCR being labeled as Docker Hub,
and second with the stable and unstable having the same IDs. This caused
the button to duplicate when switching between stable and unstable.
  • Loading branch information
joshuaboniface committed Mar 19, 2024
1 parent 07f3283 commit 90e8835
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/data/downloads.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,12 @@ docker run -d -v /srv/jellyfin/config:/config -v /srv/jellyfin/cache:/cache -v /
)
},
{
id: 'docker-hub-link',
id: 'docker-hub-stable-link',
name: 'Docker Hub',
url: 'https://hub.docker.com/r/jellyfin/jellyfin/'
},
{
id: 'docker-hub-link',
id: 'ghcr-stable-link',
name: 'GHCR',
url: 'https://ghcr.io/jellyfin/jellyfin'
}
Expand All @@ -89,12 +89,12 @@ docker run -d -v /srv/jellyfin/config:/config -v /srv/jellyfin/cache:/cache -v /
)
},
{
id: 'docker-hub-link',
id: 'docker-hub-unstable-link',
name: 'Docker Hub',
url: 'https://hub.docker.com/r/jellyfin/jellyfin/'
},
{
id: 'docker-hub-link',
id: 'ghcr-unstable-link',
name: 'GHCR',
url: 'https://ghcr.io/jellyfin/jellyfin'
}
Expand Down

0 comments on commit 90e8835

Please sign in to comment.