summaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
authorRaphael Kabo <mail@raphaelkabo.com>2022-04-24 14:14:46 +0100
committerRaphael Kabo <mail@raphaelkabo.com>2022-04-24 14:14:46 +0100
commite382e691aa2ef52af5245b6f3279f5cf6c8ed157 (patch)
tree1ef476d26b3fe8753e13495f478afbaaa9c3f738 /views
parent0bf9e7d921a8725cc56e0741022a7510a3b025ce (diff)
fix: Debug ICS feed frontend display
Diffstat (limited to 'views')
-rwxr-xr-xviews/event.handlebars2
-rwxr-xr-xviews/eventgroup.handlebars6
2 files changed, 4 insertions, 4 deletions
diff --git a/views/event.handlebars b/views/event.handlebars
index 6f13c38..1a3fb17 100755
--- a/views/event.handlebars
+++ b/views/event.handlebars
@@ -66,7 +66,7 @@
<span class="fa-li">
<i class="fas fa-fw fa-share-square"></i>
</span>
- <a href="https://{{domain}}/{{eventData.id}}">{{domain}}/{{eventData.id}}</a>
+ <a href="https://{{domain}}/{{eventData.id}}">https://{{domain}}/{{eventData.id}}</a>
<button type="button" id="copyEventLink" class="eventInformationAction btn btn-outline-secondary btn-sm" data-clipboard-text="https://{{domain}}/{{eventData.id}}">
<i class="fas fa-copy"></i> Copy
</button>
diff --git a/views/eventgroup.handlebars b/views/eventgroup.handlebars
index e659915..d9179d1 100755
--- a/views/eventgroup.handlebars
+++ b/views/eventgroup.handlebars
@@ -51,7 +51,7 @@
<span class="fa-li">
<i class="fas fa-share-square"></i>
</span>
- <a href="https://{{domain}}/group/{{eventGroupData.id}}">{{domain}}/group/{{eventGroupData.id}}</a>
+ <a href="https://{{domain}}/group/{{eventGroupData.id}}">https://{{domain}}/group/{{eventGroupData.id}}</a>
<button type="button" id="copyEventLink" class="eventInformationAction btn btn-outline-secondary btn-sm" data-clipboard-text="https://{{domain}}/group/{{eventGroupData.id}}">
<i class="fas fa-copy"></i> Copy
</button>
@@ -61,10 +61,10 @@
<i class="fas fa-rss"></i>
</span>
<a
- href="/group/{{eventGroupData.id}}/feed.ics">{{domain}}/group/{{eventGroupData.id}}/feed.ics</a>&nbsp;
+ href="https://{{domain}}/group/{{eventGroupData.id}}/feed.ics">https://{{domain}}/group/{{eventGroupData.id}}/feed.ics</a>&nbsp;
<button type="button" id="copyFeedLink"
class="eventInformationAction btn btn-outline-secondary btn-sm"
- data-clipboard-text="{{domain}}/group/{{eventGroupData.id}}/feed.ics">
+ data-clipboard-text="https://{{domain}}/group/{{eventGroupData.id}}/feed.ics">
<i class="fas fa-copy"></i> Copy
</button>
</li>