From e5687c6e43c119ecace22e8d5bbb52b3d0691a5e Mon Sep 17 00:00:00 2001
From: Lennart <18233294+lennart-k@users.noreply.github.com>
Date: Mon, 23 Jun 2025 14:03:10 +0200
Subject: [PATCH] fix(frontend): calendar subscription creation
---
crates/frontend/js-components/lib/create-calendar-form.ts | 2 +-
crates/frontend/public/assets/js/create-calendar-form.mjs | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/crates/frontend/js-components/lib/create-calendar-form.ts b/crates/frontend/js-components/lib/create-calendar-form.ts
index a65bb85..adfec17 100644
--- a/crates/frontend/js-components/lib/create-calendar-form.ts
+++ b/crates/frontend/js-components/lib/create-calendar-form.ts
@@ -103,7 +103,7 @@ export class CreateCalendarForm extends LitElement {
${this.displayname}
${this.description ? `${this.description}` : ''}
${this.color ? `${this.color}` : ''}
- ${this.subscriptionUrl ? `${this.subscriptionUrl}` : ''}
+ ${this.subscriptionUrl ? `${this.subscriptionUrl}` : ''}
${Array.from(this.components.keys()).map(comp => ``).join('\n')}
diff --git a/crates/frontend/public/assets/js/create-calendar-form.mjs b/crates/frontend/public/assets/js/create-calendar-form.mjs
index ca9d6e0..dc62b23 100644
--- a/crates/frontend/public/assets/js/create-calendar-form.mjs
+++ b/crates/frontend/public/assets/js/create-calendar-form.mjs
@@ -81,7 +81,7 @@ let r = class extends u {
${this.displayname}
${this.description ? `${this.description}` : ""}
${this.color ? `${this.color}` : ""}
- ${this.subscriptionUrl ? `${this.subscriptionUrl}` : ""}
+ ${this.subscriptionUrl ? `${this.subscriptionUrl}` : ""}
${Array.from(this.components.keys()).map((e) => ``).join(`
`)}