mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
parent
7303a283dc
commit
ae1fbd0921
1 changed files with 7 additions and 5 deletions
|
|
@ -29,11 +29,13 @@ export const InfoCard = (props: IProps) => {
|
|||
return <div className="col-9">
|
||||
<Tags tags={props.tags}/>
|
||||
<div className="d-md-none">
|
||||
{props.syntax.supportedSoftware.map(
|
||||
(s: ISyntaxSupportedSoftwareDto, i: number) =>
|
||||
<a href={s.homeUrl} key={i}>
|
||||
<SoftwareIcon id={s.id} key={i}/>
|
||||
</a>)}
|
||||
{props.syntax
|
||||
? props.syntax.supportedSoftware.map(
|
||||
(s: ISyntaxSupportedSoftwareDto, i: number) =>
|
||||
<a href={s.homeUrl} key={i}>
|
||||
<SoftwareIcon id={s.id} key={i}/>
|
||||
</a>)
|
||||
: null}
|
||||
</div>
|
||||
<Description {...props} url={props.descriptionSourceUrl}/>
|
||||
<ul className="list-group list-group-flush">
|
||||
|
|
|
|||
Loading…
Reference in a new issue