mirror of
https://github.com/idanoo/autobrr
synced 2025-07-22 16:29:12 +00:00
fix(web): typos in duplicate release profile settings (#1924)
fix(web): typos in duplicate releases setting titles
This commit is contained in:
parent
f9a74d9b2e
commit
2bb6956b08
1 changed files with 2 additions and 2 deletions
|
@ -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" />}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue