Skip to content

Commit

Permalink
Merge pull request #8996 from scratchfoundation/fix/missing-view-text
Browse files Browse the repository at this point in the history
fix: [UEPR-116] added missing views text
  • Loading branch information
MiroslavDionisiev authored Dec 5, 2024
2 parents 42c8322 + a820434 commit 12d7ea7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const YoutubeVideoButton = ({onSelectedVideo, ...videoData}) => (
<div className="video-metadata">
<div className="channel-name">{videoData.channel}</div>
<div className="video-statistics">
{`${parseViewCount(videoData.views)} · ${videoData.uploadTime}`}
{`${parseViewCount(videoData.views)} views · ${videoData.uploadTime}`}
</div>
</div>
{videoData.hasCC && <img src="/images/ideas/video-cc-label.svg" />}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
}

.video-metadata {
margin: 0.5rem 4rem 0.25rem 0;
margin: 0.5rem 0 0.25rem 0;

color: $ui-dark-gray;
font-size: 0.75rem;
Expand Down

0 comments on commit 12d7ea7

Please sign in to comment.