aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-library/my-video-channel-syncs/my-video-channel-syncs.component.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-10-12 09:10:07 +0200
committerChocobozzz <me@florianbigard.com>2022-10-12 09:10:07 +0200
commit8bd4a1edcccdbf3bc97d261e9acf20ccf5849487 (patch)
treede09006d851d780f64185bc37cb9392295b636ea /client/src/app/+my-library/my-video-channel-syncs/my-video-channel-syncs.component.ts
parent3d5d2deef5e8f26b009723db5addb0dcb90aa71d (diff)
downloadPeerTube-8bd4a1edcccdbf3bc97d261e9acf20ccf5849487.tar.gz
PeerTube-8bd4a1edcccdbf3bc97d261e9acf20ccf5849487.tar.zst
PeerTube-8bd4a1edcccdbf3bc97d261e9acf20ccf5849487.zip
Fix import link
Diffstat (limited to 'client/src/app/+my-library/my-video-channel-syncs/my-video-channel-syncs.component.ts')
-rw-r--r--client/src/app/+my-library/my-video-channel-syncs/my-video-channel-syncs.component.ts7
1 files changed, 4 insertions, 3 deletions
diff --git a/client/src/app/+my-library/my-video-channel-syncs/my-video-channel-syncs.component.ts b/client/src/app/+my-library/my-video-channel-syncs/my-video-channel-syncs.component.ts
index 5d5cc6dea..d18e78201 100644
--- a/client/src/app/+my-library/my-video-channel-syncs/my-video-channel-syncs.component.ts
+++ b/client/src/app/+my-library/my-video-channel-syncs/my-video-channel-syncs.component.ts
@@ -1,10 +1,10 @@
1import { SortMeta } from 'primeng/api'
2import { mergeMap } from 'rxjs'
1import { Component, OnInit } from '@angular/core' 3import { Component, OnInit } from '@angular/core'
2import { AuthService, Notifier, RestPagination, RestTable, ServerService } from '@app/core' 4import { AuthService, Notifier, RestPagination, RestTable, ServerService } from '@app/core'
3import { DropdownAction, VideoChannelService, VideoChannelSyncService } from '@app/shared/shared-main' 5import { DropdownAction, VideoChannelService, VideoChannelSyncService } from '@app/shared/shared-main'
4import { HTMLServerConfig } from '@shared/models/server' 6import { HTMLServerConfig } from '@shared/models/server'
5import { VideoChannelSync, VideoChannelSyncState } from '@shared/models/videos' 7import { VideoChannelSync, VideoChannelSyncState } from '@shared/models/videos'
6import { SortMeta } from 'primeng/api'
7import { mergeMap } from 'rxjs'
8 8
9@Component({ 9@Component({
10 templateUrl: './my-video-channel-syncs.component.html', 10 templateUrl: './my-video-channel-syncs.component.html',
@@ -47,7 +47,8 @@ export class MyVideoChannelSyncsComponent extends RestTable implements OnInit {
47 [ 47 [
48 { 48 {
49 label: $localize`List imports`, 49 label: $localize`List imports`,
50 linkBuilder: (videoChannelSync) => [ `/my-library/video-imports?search=videoChannelSyncId:${videoChannelSync.id}` ], 50 linkBuilder: () => [ '/my-library/video-imports' ],
51 queryParamsBuilder: sync => ({ search: `videoChannelSyncId:${sync.id}` }),
51 iconName: 'cloud-download' 52 iconName: 'cloud-download'
52 } 53 }
53 ], 54 ],