frontend: Fix missing getTimezones import in create-calendar-form

fixes #141
This commit is contained in:
Lennart
2025-11-14 11:01:59 +01:00
parent 80eae5db9e
commit 416658d069
4 changed files with 18 additions and 12 deletions

View File

@@ -2,6 +2,7 @@ import { html, LitElement } from "lit";
import { customElement, property } from "lit/decorators.js";
import { Ref, createRef, ref } from 'lit/directives/ref.js';
import { escapeXml } from ".";
import { getTimezones } from "./timezones.ts";
@customElement("create-calendar-form")
export class CreateCalendarForm extends LitElement {