浏览代码

Don't show letter in avatar icon if there is a picture for the account

sbkwgh 7 年之前
父节点
当前提交
d0d8a6ffd4
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      frontend/src/components/AvatarIcon.vue

+ 1 - 1
frontend/src/components/AvatarIcon.vue

@@ -71,7 +71,7 @@
 				return {};
 			},
 			letter () {
-				if(this.proxyUser.username) {
+				if(this.proxyUser.username && !this.proxyUser.picture) {
 					return this.proxyUser.username[0].toUpperCase();
 				} else {
 					return '';