Improve "AboutInstance" page load

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2020-12-04 15:08:49 +01:00
parent b4229e2e09
commit c94e431618
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 7 additions and 4 deletions

View File

@ -47,7 +47,7 @@
<table class="table is-fullwidth"> <table class="table is-fullwidth">
<tr> <tr>
<td>{{ $t("Instance languages") }}</td> <td>{{ $t("Instance languages") }}</td>
<td :title="this.config.languages.join(', ')"> <td :title="this.config ? this.config.languages.join(', ') : ''">
{{ formattedLanguageList }} {{ formattedLanguageList }}
</td> </td>
</tr> </tr>
@ -105,7 +105,7 @@ import langs from "../../i18n/langs.json";
}; };
}, },
skip() { skip() {
return !this.config.languages; return !this.config || !this.config.languages;
}, },
}, },
}, },
@ -126,8 +126,11 @@ export default class AboutInstance extends Vue {
} }
get formattedLanguageList(): string { get formattedLanguageList(): string {
const list = this.languages.map(({ name }) => name); if (this.languages) {
return formatList(list); const list = this.languages.map(({ name }) => name);
return formatList(list);
}
return "";
} }
// eslint-disable-next-line class-methods-use-this // eslint-disable-next-line class-methods-use-this