[#7681] changed settings app url input to type=text
This commit is contained in:
File diff suppressed because one or more lines are too long
Vendored
+1
-1
@@ -13,7 +13,7 @@
|
||||
|
||||
<!-- prism -->
|
||||
<script src="./libs/prism/prism.js" data-manual></script>
|
||||
<script type="module" crossorigin src="./assets/index-CXH-BQix.js"></script>
|
||||
<script type="module" crossorigin src="./assets/index-xKkyzP6n.js"></script>
|
||||
<link rel="modulepreload" crossorigin href="./assets/pocketbase.es-B_4DUNUU.js">
|
||||
<link rel="stylesheet" crossorigin href="./assets/index-DR1PnFnr.css">
|
||||
</head>
|
||||
|
||||
@@ -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),
|
||||
|
||||
Reference in New Issue
Block a user