From f90fca8bbf1edfb70ee5d1609c5e99cd098305ab Mon Sep 17 00:00:00 2001 From: Lukas Mertens Date: Tue, 19 Mar 2024 10:03:04 +0100 Subject: [PATCH] chore: change example to localhost The planned oetzi server is not finished yet, so we shouldn't use it as the default yet Signed-off-by: Lukas Mertens commit-id:b1ee3f1a --- src/pages/LoginPage.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/pages/LoginPage.vue b/src/pages/LoginPage.vue index 8c927563..7771efbd 100644 --- a/src/pages/LoginPage.vue +++ b/src/pages/LoginPage.vue @@ -47,7 +47,7 @@ label="EVerest instance host address" v-model="host.value.value" :error-messages="host.errorMessage.value" - hint="For example, oetzi.pionix.net" + hint="For example, localhost" > @@ -140,10 +140,10 @@ export default defineComponent({ port: 8849, }, { - id: "Ötzi", - host: "oetzi.pionix.net", + id: "Instance on localhost", + host: "localhost", editable: true, - protocol: "wss", + protocol: "ws", port: 8849, }, ]);