1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00

Fixed: Viewing tag details in settings

Closes #4683
This commit is contained in:
Mark McDowall 2021-10-05 12:22:57 -07:00
parent bb89fb0867
commit 979219f7df

View File

@ -128,7 +128,7 @@ function TagDetailsModalContent(props) {
> >
<div> <div>
{ {
split(item.required).map((r) => { item.required.map((r) => {
return ( return (
<Label <Label
key={r} key={r}
@ -143,7 +143,7 @@ function TagDetailsModalContent(props) {
<div> <div>
{ {
split(item.ignored).map((i) => { item.ignored.map((i) => {
return ( return (
<Label <Label
key={i} key={i}