[#7681] changed settings app url input to type=text

This commit is contained in:
Gani Georgiev
2026-05-06 19:40:44 +03:00
parent 4396369bb9
commit 3cedf032ca
5 changed files with 10 additions and 3 deletions
@@ -207,7 +207,11 @@ export function pageApplicationSettings() {
t.input({
id: "meta.appURL",
name: "meta.appURL",
type: "url",
// note: text for compatibility with older versions
// (https://github.com/pocketbase/pocketbase/issues/7681)
//
// @todo consider reverting back to "url" once enforced on the backend too
type: "text",
required: true,
value: () => data.formSettings.meta.appURL || "",
oninput: (e) => (data.formSettings.meta.appURL = e.target.value),