We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4de8dfc + 01239f6 commit cf64eabCopy full SHA for cf64eab
src/components/home/ProjectCard.jsx
@@ -18,7 +18,7 @@ const ProjectCard = ({ value }) => {
18
<Card className="card shadow-lg p-3 mb-5 bg-white rounded">
19
<Card.Body>
20
<Card.Title as="h5">{name || <Skeleton />} </Card.Title>
21
- <Card.Text>{description || <Skeleton count={3} />} </Card.Text>
+ <Card.Text>{(!description)?"":description || <Skeleton count={3} />} </Card.Text>
22
{svn_url ? <CardButtons svn_url={svn_url} /> : <Skeleton count={2} />}
23
<hr />
24
{languages_url ? (
0 commit comments