Files
Radicale/radicale/web
bb2 9b1750e0ea UI: Avoid redundant URL completion in CollectionsScene
**Problem Description:**
Redundant URL completion in `CollectionsScene.js`. The file passes a `collection.href` that already contains the full path prefix to `UrlTextHandler.setHref`. Because `setHref` internally calls `completeHref` again, the path is double-completed (over-completed), resulting in a malformed URL.

**Solution:**
Instead of using `completeHref(collection.href)`, use `window.location.origin + collection.href` to manually construct the full URL, preventing the secondary completion bug.
2026-05-21 19:24:12 +08:00
..
2026-05-12 08:35:28 +02:00
2026-05-12 08:35:28 +02:00
2026-05-12 08:35:28 +02:00
2026-03-08 00:49:39 +01:00

Built-in web UI

If you have tsc installed, you can type-check all JavaScript using

tsc -p radicale/web/jsconfig.json --noEmit --pretty