fix(web): typos in duplicate release profile settings (#1924)

fix(web): typos in duplicate releases setting titles
This commit is contained in:
martylukyy 2025-01-04 13:24:00 +01:00 committed by GitHub
parent f9a74d9b2e
commit 2bb6956b08
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -54,8 +54,8 @@ function ReleaseProfileListItem({ profile }: ReleaseProfileProps) {
<div className="col-span-9 sm:col-span-9 lg:col-span-9 pl-4 sm:pl-4 pr-6 py-3 flex gap-x-0.5 flex-row text-sm font-medium text-gray-900 dark:text-white truncate"> <div className="col-span-9 sm:col-span-9 lg:col-span-9 pl-4 sm:pl-4 pr-6 py-3 flex gap-x-0.5 flex-row text-sm font-medium text-gray-900 dark:text-white truncate">
{profile.release_name && <EnabledPill value={profile.release_name} label="RLS" title="Release name" />} {profile.release_name && <EnabledPill value={profile.release_name} label="RLS" title="Release name" />}
{profile.hash && <EnabledPill value={profile.hash} label="Hash" title="Normalized hash of the release name. Use with Release name for exact match" />} {profile.hash && <EnabledPill value={profile.hash} label="Hash" title="Normalized hash of the release name. Use with Release name for exact match" />}
{profile.title && <EnabledPill value={profile.title} label="Title" title="Parsed titel" />} {profile.title && <EnabledPill value={profile.title} label="Title" title="Parsed title" />}
{profile.sub_title && <EnabledPill value={profile.sub_title} label="Sub Title" title="Parsed sub titel like Episode name" />} {profile.sub_title && <EnabledPill value={profile.sub_title} label="Sub Title" title="Parsed sub title like Episode name" />}
{profile.group && <EnabledPill value={profile.group} label="Group" title="Release group" />} {profile.group && <EnabledPill value={profile.group} label="Group" title="Release group" />}
{profile.year && <EnabledPill value={profile.year} label="Year" title="Year" />} {profile.year && <EnabledPill value={profile.year} label="Year" title="Year" />}
{profile.month && <EnabledPill value={profile.month} label="Month" title="Month" />} {profile.month && <EnabledPill value={profile.month} label="Month" title="Month" />}