diff --git a/ui/.env b/ui/.env
index c983d07f..bcd72804 100644
--- a/ui/.env
+++ b/ui/.env
@@ -1,5 +1,7 @@
# all environments should start with 'PB_' prefix
-PB_BACKEND_URL = ../
-PB_PROFILE_COLLECTION = profiles
-PB_RULES_SYNTAX_DOCS = https://pocketbase.io/docs/manage-collections#rules-filters-syntax
-PB_INSTALLER_PARAM = installer
+PB_BACKEND_URL = "../"
+PB_PROFILE_COLLECTION = "profiles"
+PB_RULES_SYNTAX_DOCS = "https://pocketbase.io/docs/manage-collections#rules-filters-syntax"
+PB_INSTALLER_PARAM = "installer"
+PB_RELEASES = "https://github.com/pocketbase/pocketbase/releases"
+PB_VERSION = "v0.4.0"
diff --git a/ui/.env.development b/ui/.env.development
index b4615bf4..d00088b5 100644
--- a/ui/.env.development
+++ b/ui/.env.development
@@ -1 +1 @@
-PB_BACKEND_URL = http://127.0.0.1:8090
+PB_BACKEND_URL = "http://127.0.0.1:8090"
diff --git a/ui/index.html b/ui/index.html
index 4330e9b4..e3c250ed 100644
--- a/ui/index.html
+++ b/ui/index.html
@@ -20,7 +20,7 @@
-
+
-
-
-
-
+
+
{#if !nobranding}
@@ -23,18 +23,10 @@
-
-
-
+
diff --git a/ui/src/components/base/PageWrapper.svelte b/ui/src/components/base/PageWrapper.svelte
new file mode 100644
index 00000000..e1cb01ba
--- /dev/null
+++ b/ui/src/components/base/PageWrapper.svelte
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
diff --git a/ui/src/components/logs/PageLogs.svelte b/ui/src/components/logs/PageLogs.svelte
index dc363e58..b6ee6b59 100644
--- a/ui/src/components/logs/PageLogs.svelte
+++ b/ui/src/components/logs/PageLogs.svelte
@@ -1,6 +1,7 @@
-
+
-
+
diff --git a/ui/src/components/settings/PageExportCollections.svelte b/ui/src/components/settings/PageExportCollections.svelte
index 7898bfe7..9accfcca 100644
--- a/ui/src/components/settings/PageExportCollections.svelte
+++ b/ui/src/components/settings/PageExportCollections.svelte
@@ -3,6 +3,7 @@
import CommonHelper from "@/utils/CommonHelper";
import { pageTitle } from "@/stores/app";
import { addInfoToast } from "@/stores/toasts";
+ import PageWrapper from "@/components/base/PageWrapper.svelte";
import CodeBlock from "@/components/base/CodeBlock.svelte";
import SettingsSidebar from "@/components/settings/SettingsSidebar.svelte";
@@ -43,13 +44,13 @@
function copy() {
CommonHelper.copyToClipboard(schema);
- addInfoToast("The collections list was copied to your clipboard!", 3000);
+ addInfoToast("The configuration was copied to your clipboard!", 3000);
}
-
+
-
+