mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-20 18:52:10 -04:00
#74 social login - change order in the account
This commit is contained in:
parent
81d8212786
commit
f37ee9368a
@ -73,6 +73,17 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<Loading :value="profiles">
|
||||
<template v-slot:header>
|
||||
<h3 class="h4"><T>profile.list</T>:</h3>
|
||||
</template>
|
||||
<ul v-if="profiles !== undefined" class="list-group">
|
||||
<li v-for="(options, locale) in locales" :key="locale" :class="['list-group-item', locale === config.locale ? 'profile-current' : '']">
|
||||
<ProfileOverview :profile="profiles[locale]" :locale="locale" @update="setProfiles"/>
|
||||
</li>
|
||||
</ul>
|
||||
</Loading>
|
||||
|
||||
<Loading :value="socialConnections">
|
||||
<template v-slot:header>
|
||||
<h3 class="h4"><T>user.socialConnection.list</T>:</h3>
|
||||
@ -85,17 +96,6 @@
|
||||
</ul>
|
||||
</Loading>
|
||||
|
||||
<Loading :value="profiles">
|
||||
<template v-slot:header>
|
||||
<h3 class="h4"><T>profile.list</T>:</h3>
|
||||
</template>
|
||||
<ul v-if="profiles !== undefined" class="list-group">
|
||||
<li v-for="(options, locale) in locales" :key="locale" :class="['list-group-item', locale === config.locale ? 'profile-current' : '']">
|
||||
<ProfileOverview :profile="profiles[locale]" :locale="locale" @update="setProfiles"/>
|
||||
</li>
|
||||
</ul>
|
||||
</Loading>
|
||||
|
||||
<section>
|
||||
<a href="#" class="badge badge-light border" @click.prevent="logout">
|
||||
<Icon v="sign-out"/>
|
||||
|
Loading…
x
Reference in New Issue
Block a user