Skip to content

Commit

Permalink
Add separation for series title options
Browse files Browse the repository at this point in the history
  • Loading branch information
harshithmohan committed Apr 23, 2024
1 parent c16ca9c commit 0f74516
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Collection/Series/EditSeriesTabs/NameTab.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,15 @@ const NameTab = ({ seriesId }: Props) => {
/>
{nameEditable && (
<div className="flex overflow-y-auto rounded-lg border border-panel-border bg-panel-background-alt p-4">
<div className="flex grow flex-col gap-y-2.5 overflow-y-auto pr-4">
<div className="flex grow flex-col overflow-y-auto pr-4">
{map(series.AniDB?.Titles, title => (
<div
className="flex cursor-pointer justify-between"
className="flex cursor-pointer justify-between border-b-2 border-panel-border py-2 first:pt-0 last:border-none"
key={title.Language}
onClick={() => setName(title.Name)}
>
<div>{title.Name}</div>
{title.Language}
<div className="shrink-0 text-right">{title.Language}</div>
</div>
))}
</div>
Expand Down

0 comments on commit 0f74516

Please sign in to comment.