From bd8668f0bfc01b22ebed3638494bb03936582b33 Mon Sep 17 00:00:00 2001 From: advplyr Date: Fri, 8 Aug 2025 17:39:27 -0500 Subject: [PATCH] Fix rss feed modal not showing full URL once open #1652 --- components/modals/rssfeeds/RssFeedModal.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/components/modals/rssfeeds/RssFeedModal.vue b/components/modals/rssfeeds/RssFeedModal.vue index 97b11a0f..9172076c 100644 --- a/components/modals/rssfeeds/RssFeedModal.vue +++ b/components/modals/rssfeeds/RssFeedModal.vue @@ -12,9 +12,9 @@

{{ $strings.HeaderRSSFeedIsOpen }}

- + - {{ linkCopied ? 'check' : 'content_copy' }} + {{ linkCopied ? 'check' : 'content_copy' }}
@@ -119,6 +119,10 @@ export default { demoFeedUrl() { return `${this.serverAddress}/feed/${this.newFeedSlug}` }, + fullFeedUrl() { + if (!this.currentFeed) return '' + return `${this.serverAddress}${this.currentFeed.feedUrl}` + }, isHttp() { return !!this.serverAddress?.startsWith('http://') }