mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
fix app info url
This commit is contained in:
parent
ae485e4dd5
commit
f35b848bf6
1 changed files with 2 additions and 2 deletions
|
@ -59,7 +59,7 @@
|
||||||
</b-input-group>
|
</b-input-group>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template #description>
|
<template v-if="perm.url" #description>
|
||||||
{{ $t('permission_corresponding_url') }}:
|
{{ $t('permission_corresponding_url') }}:
|
||||||
<b-link :href="'https:' + perm.url">
|
<b-link :href="'https:' + perm.url">
|
||||||
https://{{ perm.url }}
|
https://{{ perm.url }}
|
||||||
|
@ -234,7 +234,7 @@ export default {
|
||||||
multi_instance: this.$i18n.t(app.manifest.multi_instance ? 'yes' : 'no'),
|
multi_instance: this.$i18n.t(app.manifest.multi_instance ? 'yes' : 'no'),
|
||||||
install_time: readableDate(app.settings.install_time, true, true)
|
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
|
this.infos.url = 'https://' + app.settings.domain + app.settings.path
|
||||||
form.url = {
|
form.url = {
|
||||||
domain: app.settings.domain,
|
domain: app.settings.domain,
|
||||||
|
|
Loading…
Add table
Reference in a new issue