This commit is contained in:
2022-02-15 19:48:26 +00:00
parent b29ab8eceb
commit 27efdd9644
14 changed files with 28 additions and 54 deletions

View File

@@ -62,7 +62,7 @@
<v-subheader>{{ $ay.t("Server") }}</v-subheader>
<div>
<span class="ml-6 text-body-1">{{ $ay.t("ServerAddress") }}: </span>
<span class="text-body-2">{{ $store.state.apiUrl }}</span>
<span class="text-body-2">{{ apiUrl }}</span>
</div>
<div>
<span class="ml-6 text-body-1">{{ $ay.t("Version") }}: </span>
@@ -158,6 +158,11 @@ export default {
}
};
},
computed: {
apiUrl() {
return window.$gz.api.APIUrl("");
}
},
async created() {
const vm = this;
try {