We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28ff21c commit 69d46d1Copy full SHA for 69d46d1
1 file changed
radicale/web/internal_data/js/scenes/CreateEditCollectionScene.js
@@ -196,7 +196,7 @@ export class CreateEditCollectionScene {
196
this._remove_invalid_types();
197
this._html_scene.classList.remove("hidden");
198
if (this._edit && this._title_form) {
199
- this._title_form.textContent = this._collection.displayname || this._collection.href;
+ this._title_form.textContent = this._collection.displayname || decodeURIComponent(this._collection.href);
200
}
201
this._fill_form();
202
this._submit_btn.onclick = () => this._onsubmit();
@@ -230,4 +230,4 @@ export class CreateEditCollectionScene {
230
return extract_title(this._collection);
231
232
233
-}
+}
0 commit comments