Fix privacy label display
This commit is contained in:
parent
0a57bbff21
commit
abf325b4f6
2 changed files with 12 additions and 2 deletions
|
@ -24,7 +24,7 @@
|
|||
>
|
||||
<my-video-miniature
|
||||
*ngFor="let video of videos; trackBy: videoById" [video]="video" [user]="user" [ownerDisplayType]="ownerDisplayType"
|
||||
[displayVideoActions]="displayVideoActions"
|
||||
[displayVideoActions]="displayVideoActions" [displayOptions]="displayOptions"
|
||||
(videoBlacklisted)="removeVideoFromArray(video)" (videoRemoved)="removeVideoFromArray(video)"
|
||||
>
|
||||
</my-video-miniature>
|
||||
|
|
|
@ -7,7 +7,7 @@ import { ComponentPagination } from '../rest/component-pagination.model'
|
|||
import { VideoSortField } from './sort-field.type'
|
||||
import { Video } from './video.model'
|
||||
import { ScreenService } from '@app/shared/misc/screen.service'
|
||||
import { OwnerDisplayType } from '@app/shared/video/video-miniature.component'
|
||||
import { MiniatureDisplayOptions, OwnerDisplayType } from '@app/shared/video/video-miniature.component'
|
||||
import { Syndication } from '@app/shared/video/syndication.model'
|
||||
import { Notifier, ServerService } from '@app/core'
|
||||
import { DisableForReuseHook } from '@app/core/routing/disable-for-reuse-hook'
|
||||
|
@ -34,6 +34,16 @@ export abstract class AbstractVideoList implements OnInit, OnDestroy, DisableFor
|
|||
|
||||
disabled = false
|
||||
|
||||
displayOptions: MiniatureDisplayOptions = {
|
||||
date: true,
|
||||
views: true,
|
||||
by: true,
|
||||
privacyLabel: true,
|
||||
privacyText: false,
|
||||
state: false,
|
||||
blacklistInfo: false
|
||||
}
|
||||
|
||||
protected abstract notifier: Notifier
|
||||
protected abstract authService: AuthService
|
||||
protected abstract route: ActivatedRoute
|
||||
|
|
Loading…
Reference in a new issue