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://')
}