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 fa4908d + d230f8d commit eb90b7fCopy full SHA for eb90b7f
src/shared/components/challenge-detail/Specification/SideBar/index.jsx
@@ -172,7 +172,7 @@ export default function SideBar({
172
)
173
}
174
{
175
- screeningScorecardId && screeningScorecardId.length > 0
+ screeningScorecardId > 0
176
&& (
177
<p styleName="link-like-paragraph">
178
<a href={`${scorecardURL}${screeningScorecardId}`}>
@@ -182,6 +182,8 @@ export default function SideBar({
182
183
184
185
+ reviewScorecardId > 0 && !isDesign
186
+ && (
187
<span styleName="link-like-paragraph tooltip-container">
188
<a href={`${scorecardURL}${reviewScorecardId}`}>
189
Review Scorecard
@@ -192,6 +194,7 @@ export default function SideBar({
192
194
</div>
193
195
</Tooltip>
196
</span>
197
+ )
198
199
200
0 commit comments