mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
de-dup language display in expander except on xs
This commit is contained in:
parent
d4bd0dffbe
commit
2a1ab84d8e
1 changed files with 2 additions and 2 deletions
|
|
@ -62,11 +62,11 @@ function Description(props: any) {
|
|||
function Languages(props: any) {
|
||||
return props.languages.length > 0
|
||||
? props.languages.length > 1
|
||||
? <div>
|
||||
? <div className="visible-xs">
|
||||
<h2>Languages</h2>
|
||||
<p>{props.languages.join(", ")}</p>
|
||||
</div>
|
||||
: <div>
|
||||
: <div className="visible-xs">
|
||||
<h2>Language</h2>
|
||||
<p>{props.languages.join(", ")}</p>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in a new issue