Skip to content

Commit

Permalink
fix playground button on store (#2417)
Browse files Browse the repository at this point in the history
* fix playground on store

* [autofix.ci] apply automated fixes

* Format code

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: Gabriel Luiz Freitas Almeida <[email protected]>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
4 people authored Jul 1, 2024
1 parent b384402 commit b458875
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/frontend/src/components/cardComponent/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,15 @@ export default function CollectionCardComponent({
</div>

<CardDescription className="pb-2 pt-2">
<div className="truncate-doubleline">{data.description}</div>
<div
className={
data?.metadata !== undefined
? "truncate"
: "truncate-doubleline"
}
>
{data.description}
</div>
</CardDescription>
</CardHeader>
</div>
Expand Down

0 comments on commit b458875

Please sign in to comment.