mirror of https://github.com/Chocobozzz/PeerTube
Ensure we return a boolean
parent
0ea2f79d45
commit
9e8a7e0837
|
@ -1,7 +1,7 @@
|
|||
<div *ngIf="hasChannelNotConfigured" class="channels-setup-message alert alert-info">
|
||||
<div *ngIf="hasChannelNotConfigured()" class="channels-setup-message alert alert-info">
|
||||
<my-global-icon iconName="tip"></my-global-icon>
|
||||
|
||||
<div>
|
||||
<div>
|
||||
<div i18n>Some of your channels are not fully set up. Make them welcoming and explicit about what you publish by adding a <strong>banner</strong>, an <strong>avatar</strong> and a <strong>description</strong>.</div>
|
||||
<a *ngIf="!hideLink" class="channels-settings-link" routerLink="/my-library/video-channels" i18n>Set up my channels</a>
|
||||
</div>
|
||||
|
|
|
@ -16,8 +16,8 @@ export class ChannelsSetupMessageComponent implements OnInit {
|
|||
private authService: AuthService
|
||||
) {}
|
||||
|
||||
get hasChannelNotConfigured () {
|
||||
if (!this.user.videoChannels) return
|
||||
hasChannelNotConfigured () {
|
||||
if (!this.user.videoChannels) return false
|
||||
|
||||
return this.user.videoChannels.filter((channel: VideoChannel) => (!channel.avatar || !channel.description)).length > 0
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue