Skip to content

Commit

Permalink
better margin
Browse files Browse the repository at this point in the history
  • Loading branch information
baudelotphilippe committed Aug 31, 2023
1 parent 93360a7 commit e5cee27
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ const OtoroshiEntitiesSelector = ({
</strong>
{!!value &&
value.filter((x: any) => x.type === 'group')
.map((g: any, idx: any) => (<span key={idx}>
.map((g: any, idx: any) => (<span className="p-2" key={idx}>
{g.label}
</span>))}
</div>
Expand All @@ -215,7 +215,7 @@ const OtoroshiEntitiesSelector = ({
</strong>
{!!value &&
value.filter((x: any) => x.type === 'service')
.map((g: any, idx: any) => (<span key={idx}>
.map((g: any, idx: any) => (<span className="p-2" key={idx}>
{g.label}
</span>))}
</div>
Expand All @@ -225,7 +225,7 @@ const OtoroshiEntitiesSelector = ({
</strong>
{!!value &&
value.filter((x: any) => x.type === 'route')
.map((g: any, idx: any) => (<span key={idx}>
.map((g: any, idx: any) => (<span className="p-2" key={idx}>
{g.label}
</span>))}
</div>
Expand Down

0 comments on commit e5cee27

Please sign in to comment.