aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-watch
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-10-25 11:09:13 +0200
committerChocobozzz <me@florianbigard.com>2019-10-25 11:12:15 +0200
commit9ea6541488ae06c21cae3b9026728c52e11991cb (patch)
tree0dc58b0713b41957b94c56bb4b4528dd5b920800 /client/src/app/videos/+video-watch
parenta2ffd046d61fb6424825f183af195ce1df2e156f (diff)
downloadPeerTube-9ea6541488ae06c21cae3b9026728c52e11991cb.tar.gz
PeerTube-9ea6541488ae06c21cae3b9026728c52e11991cb.tar.zst
PeerTube-9ea6541488ae06c21cae3b9026728c52e11991cb.zip
Add class to views elements
Diffstat (limited to 'client/src/app/videos/+video-watch')
-rw-r--r--client/src/app/videos/+video-watch/video-watch.component.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/videos/+video-watch/video-watch.component.html b/client/src/app/videos/+video-watch/video-watch.component.html
index 68f284be3..ac474b427 100644
--- a/client/src/app/videos/+video-watch/video-watch.component.html
+++ b/client/src/app/videos/+video-watch/video-watch.component.html
@@ -42,7 +42,7 @@
42 <div class="d-block d-md-none"> <!-- only shown on medium devices, has its conterpart for larger viewports below --> 42 <div class="d-block d-md-none"> <!-- only shown on medium devices, has its conterpart for larger viewports below -->
43 <h1 class="video-info-name">{{ video.name }}</h1> 43 <h1 class="video-info-name">{{ video.name }}</h1>
44 <div i18n class="video-info-date-views"> 44 <div i18n class="video-info-date-views">
45 Published <my-date-toggle [date]="video.publishedAt"></my-date-toggle> - {{ video.views | myNumberFormatter }} views 45 Published <my-date-toggle [date]="video.publishedAt"></my-date-toggle> <span class="views"> - {{ video.views | myNumberFormatter }} views</span>
46 </div> 46 </div>
47 </div> 47 </div>
48 48
@@ -51,7 +51,7 @@
51 <h1 class="video-info-name">{{ video.name }}</h1> 51 <h1 class="video-info-name">{{ video.name }}</h1>
52 52
53 <div i18n class="video-info-date-views"> 53 <div i18n class="video-info-date-views">
54 Published <my-date-toggle [date]="video.publishedAt"></my-date-toggle> - {{ video.views | myNumberFormatter }} views 54 Published <my-date-toggle [date]="video.publishedAt"></my-date-toggle> <span class="views"> - {{ video.views | myNumberFormatter }} views</span>
55 </div> 55 </div>
56 </div> 56 </div>
57 57