mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
tidy InfoCard
This commit is contained in:
parent
4913595803
commit
67ef1a0905
1 changed files with 4 additions and 3 deletions
|
|
@ -32,9 +32,10 @@ export const InfoCard = (props: IProps) =>
|
|||
<div className="d-md-none">
|
||||
{props.syntax
|
||||
? props.syntax.supportedSoftware.map(
|
||||
(s: ISyntaxSupportedSoftware, i: number) => <a href={s.homeUrl} key={i}>
|
||||
<SoftwareIcon id={s.id} key={i}/>
|
||||
</a>)
|
||||
(s: ISyntaxSupportedSoftware, i: number) =>
|
||||
<a href={s.homeUrl} key={i}>
|
||||
<SoftwareIcon id={s.id} key={i}/>
|
||||
</a>)
|
||||
: null}
|
||||
</div>
|
||||
<Description {...props} url={props.descriptionSourceUrl}/>
|
||||
|
|
|
|||
Loading…
Reference in a new issue