Fix config onboarding after LDAP initial connexion

Closes #840

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2021-08-20 18:48:23 +02:00
parent 1fd027bbc2
commit ba075c1973
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
2 changed files with 2 additions and 0 deletions

View File

@ -21,6 +21,7 @@
}} }}
</span> </span>
<span <span
v-if="config"
v-html=" v-html="
$t( $t(
'This instance, <b>{instanceName} ({domain})</b>, hosts your profile, so remember its name.', 'This instance, <b>{instanceName} ({domain})</b>, hosts your profile, so remember its name.',

View File

@ -386,6 +386,7 @@ import Subtitle from "../components/Utils/Subtitle.vue";
currentUser: CURRENT_USER_CLIENT, currentUser: CURRENT_USER_CLIENT,
loggedUser: { loggedUser: {
query: USER_SETTINGS, query: USER_SETTINGS,
fetchPolicy: "network-only",
skip() { skip() {
return !this.currentUser || this.currentUser.isLoggedIn === false; return !this.currentUser || this.currentUser.isLoggedIn === false;
}, },