Fix overlapping labels

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.
This commit is contained in:
Joshua M. Boniface
2024-03-19 17:07:12 -04:00
parent 07f3283741
commit 90e8835b87
+4 -4
View File
@@ -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'
}
@@ -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'
}