From 7af5ded409c50f4f19a220cea36a8bbd16b0be24 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 15 Jan 2021 10:19:12 +0100 Subject: Put feed url as link --- .../video-user-subscriptions.component.ts | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) (limited to 'client/src/app/+videos') diff --git a/client/src/app/+videos/video-list/video-user-subscriptions.component.ts b/client/src/app/+videos/video-list/video-user-subscriptions.component.ts index 6d19707df..62d862ec9 100644 --- a/client/src/app/+videos/video-list/video-user-subscriptions.component.ts +++ b/client/src/app/+videos/video-list/video-user-subscriptions.component.ts @@ -60,22 +60,24 @@ export class VideoUserSubscriptionsComponent extends AbstractVideoList implement tokens => { const feeds = this.videoService.getVideoSubscriptionFeedUrls(user.account.id, tokens.feedToken) feedUrl = feedUrl + feeds.find(f => f.format === FeedFormat.RSS).url + + this.actions.unshift({ + label: $localize`Copy feed URL`, + iconName: 'syndication', + justIcon: true, + href: feedUrl, + click: e => { + e.preventDefault() + copyToClipboard(feedUrl) + this.activateCopiedMessage() + } + }) }, err => { this.notifier.error(err.message) } ) - - this.actions.unshift({ - label: $localize`Feed`, - iconName: 'syndication', - justIcon: true, - click: () => { - copyToClipboard(feedUrl) - this.activateCopiedMessage() - } - }) } ngOnDestroy () { -- cgit v1.2.3