Skip to content

Commit 49ead23

Browse files
patch fix
1 parent c209c4e commit 49ead23

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

src/projects/components/projectsCard/ProjectCardBody.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function ProjectCardBody({ project, projectCanBeActive, currentMemberRole, descL
5151
line={descLinesCount}
5252
truncateText="..."
5353
text={_.unescape(project.description)}
54-
textTruncateChild={showLink ? <span className="read-more-link link" onClick={(evt) => { goToProjectDetails(evt, showLinkURL, projectDetailsURL) }}>read more</span> : <span className="read-more-link">read more</span>}
54+
textTruncateChild={showLink ? <span className="read-more-link" onClick={(evt) => { goToProjectDetails(evt, showLinkURL, projectDetailsURL) }}>read more</span> : <span className="read-more-link">read more</span>}
5555
/>
5656
{!hideStatus && <div className="project-status">
5757
{(project.status !== PROJECT_STATUS_ACTIVE || progress === 0) &&

src/projects/components/projectsCard/ProjectCardBody.scss

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,7 @@
1313
.read-more-link {
1414
white-space: nowrap;
1515
color: $tc-dark-blue;
16-
17-
& .link {
18-
cursor: pointer;
19-
}
16+
cursor: pointer;
2017
}
2118
}
2219

0 commit comments

Comments
 (0)