Skip to content

Commit

Permalink
fix: hide skills label when skills are not present (#1127)
Browse files Browse the repository at this point in the history
Co-authored-by: Maham Akif <[email protected]>
  • Loading branch information
mahamakifdar19 and Maham Akif committed Jul 22, 2024
1 parent 7947a71 commit c0c328a
Showing 1 changed file with 23 additions and 21 deletions.
44 changes: 23 additions & 21 deletions src/components/microlearning/VideoDetailPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,28 +85,30 @@ const VideoDetailPage = () => {
<p className="small align-self-stretch text-justify mb-2">
{videoData?.videoSummary}
</p>
<div className="d-flex flex-row align-items-center">
<h4>
<FormattedMessage
id="videoDetailPage.skills.label"
defaultMessage="Skills:"
description="Label for skills on video detail page"
/>
</h4>
<div className="ml-2 mb-2.5">
{videoData?.videoSkills && (
videoData?.videoSkills.map((skill) => (
<Badge
key={skill.skill_id}
className="p-2 mr-1 mt-2 mr-2 font-weight-normal"
variant="light"
>
{skill.name}
</Badge>
))
)}
{ videoData?.videoSkills?.length > 0 && (
<div className="d-flex flex-row align-items-center">
<h4>
<FormattedMessage
id="videoDetailPage.skills.label"
defaultMessage="Skills:"
description="Label for skills on video detail page"
/>
</h4>
<div className="ml-2 mb-2.5">
{(
videoData?.videoSkills.map((skill) => (
<Badge
key={skill.skill_id}
className="p-2 mr-1 mt-2 mr-2 font-weight-normal"
variant="light"
>
{skill.name}
</Badge>
))
)}
</div>
</div>
</div>
)}
</div>
<div className="video-player-wrapper position-relative mw-100 overflow-hidden my-4 mt-2">
<VideoPlayer videoURL={videoData?.videoUrl} customOptions={customOptions} />
Expand Down

0 comments on commit c0c328a

Please sign in to comment.