Fix missing username conversions (#3922)

This commit is contained in:
MeiMei 2019-01-19 08:28:46 +09:00 committed by syuilo
parent fa051df381
commit 160f424466
7 changed files with 21 additions and 20 deletions

View file

@ -1,7 +1,7 @@
<template>
<x-column>
<span slot="header">
<fa icon="user"/><span>{{ title }}</span>
<fa icon="user"/><mk-user-name :user="user" v-if="user"/>
</span>
<div class="zubukjlciycdsyynicqrnlsmdwmymzqu" v-if="user">
@ -137,10 +137,6 @@ export default Vue.extend({
},
computed: {
title(): string {
return this.user ? Vue.filter('userName')(this.user) : '';
},
bannerStyle(): any {
if (this.user == null) return {};
if (this.user.bannerUrl == null) return {};