fix app info url

This commit is contained in:
axolotle 2021-04-08 10:15:26 +02:00
parent ae485e4dd5
commit f35b848bf6

View file

@ -59,7 +59,7 @@
</b-input-group>
</template>
<template #description>
<template v-if="perm.url" #description>
{{ $t('permission_corresponding_url') }}:
<b-link :href="'https:' + perm.url">
https://{{ perm.url }}
@ -234,7 +234,7 @@ export default {
multi_instance: this.$i18n.t(app.manifest.multi_instance ? 'yes' : 'no'),
install_time: readableDate(app.settings.install_time, true, true)
}
if (app.settings.domain) {
if (app.settings.domain && app.settings.path) {
this.infos.url = 'https://' + app.settings.domain + app.settings.path
form.url = {
domain: app.settings.domain,