mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
set Updated and Rules visibility in details expander opposite of in table
ref #472
This commit is contained in:
parent
9b5b9c6e2a
commit
74143345be
1 changed files with 6 additions and 2 deletions
|
|
@ -45,9 +45,13 @@ export const InfoCard = (props: IProps) =>
|
|||
<Description {...props} url={props.descriptionSourceUrl}/>
|
||||
<ul className="list-group list-group-flush">
|
||||
<Languages {...props}/>
|
||||
<RuleCount {...props}/>
|
||||
{props.columnVisibility.filter((c: IColumnVisibility) => c.column === "Rules")[0].visible
|
||||
? null
|
||||
: <RuleCount {...props}/>}
|
||||
<DiscontinuedDate date={props.discontinuedDate}/>
|
||||
<UpdatedDate {...props}/>
|
||||
{props.columnVisibility.filter((c: IColumnVisibility) => c.column === "Updated")[0].visible
|
||||
? null
|
||||
: <UpdatedDate {...props}/>}
|
||||
<PublishedDate date={props.publishedDate}/>
|
||||
<Syntax {...props.syntax}/>
|
||||
<License {...props.license}/>
|
||||
|
|
|
|||
Loading…
Reference in a new issue