Remove unnecessary Username from footer

This commit is contained in:
Bubka
2020-02-13 17:19:55 +01:00
parent 1d2413f85c
commit 362fdbf950
3 changed files with 1 additions and 10 deletions

View File

@ -8,7 +8,7 @@
</div>
</div>
<div class="content has-text-centered">
{{ $t('auth.hello', {username: username}) }} <router-link :to="{ name: 'profile' }" class="has-text-grey">{{ $t('commons.profile') }}</router-link> - <a class="has-text-grey" @click="logout">{{ $t('auth.sign_out') }}</a>
<router-link :to="{ name: 'profile' }" class="has-text-grey">{{ $t('commons.profile') }}</router-link> - <a class="has-text-grey" @click="logout">{{ $t('auth.sign_out') }}</a>
</div>
</footer>
</template>
@ -19,7 +19,6 @@
data(){
return {
username : null,
}
},
@ -27,10 +26,6 @@
showButtons: true,
},
created() {
this.username = localStorage.getItem('user')
},
methods: {
async logout(evt) {