Procházet zdrojové kódy

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

sbkwgh před 7 roky
rodič
revize
d0d8a6ffd4
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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 '';