aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+accounts/account-videos
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-04-01 16:14:34 +0200
committerChocobozzz <me@florianbigard.com>2021-04-01 16:54:49 +0200
commit4d5e572f52e000034abb076e4bf7d7044d704f94 (patch)
treeb064e9902bf68e5e67c4f1750779c2e2ef2b47f1 /client/src/app/+accounts/account-videos
parent0f7407d926cf7774f8f730dba08327569c11680c (diff)
downloadPeerTube-4d5e572f52e000034abb076e4bf7d7044d704f94.tar.gz
PeerTube-4d5e572f52e000034abb076e4bf7d7044d704f94.tar.zst
PeerTube-4d5e572f52e000034abb076e4bf7d7044d704f94.zip
Account/channel videos display as rows
Diffstat (limited to 'client/src/app/+accounts/account-videos')
-rw-r--r--client/src/app/+accounts/account-videos/account-videos.component.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/client/src/app/+accounts/account-videos/account-videos.component.ts b/client/src/app/+accounts/account-videos/account-videos.component.ts
index 484d60e25..78af2316a 100644
--- a/client/src/app/+accounts/account-videos/account-videos.component.ts
+++ b/client/src/app/+accounts/account-videos/account-videos.component.ts
@@ -93,4 +93,8 @@ export class AccountVideosComponent extends AbstractVideoList implements OnInit,
93 generateSyndicationList () { 93 generateSyndicationList () {
94 this.syndicationItems = this.videoService.getAccountFeedUrls(this.account.id) 94 this.syndicationItems = this.videoService.getAccountFeedUrls(this.account.id)
95 } 95 }
96
97 displayAsRow () {
98 return this.screenService.isInMobileView()
99 }
96} 100}