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
1 changed files with 2 additions and 2 deletions

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}