Resolve "Set Password should be changed to Change Password once the user has set the password on User Profile screen"

This commit is contained in:
N Pex 2023-06-07 12:55:12 +00:00
parent 026a422230
commit 7b3b167afe
5 changed files with 17 additions and 48 deletions

View file

@ -12,7 +12,7 @@ export default {
if (!this.user) {
return null;
}
return this.user.displayName;
return this.$matrix.userDisplayName || this.user.displayName;
},
set(newValue) {
this.user.displayName = newValue
@ -20,17 +20,17 @@ export default {
},
userAvatar() {
if (!this.user || !this.user.avatarUrl) {
if (!this.$matrix.userAvatar) {
return null;
}
return this.$matrix.matrixClient.mxcUrlToHttp(this.user.avatarUrl, 80, 80, 'scale', true);
return this.$matrix.matrixClient.mxcUrlToHttp(this.$matrix.userAvatar, 80, 80, 'scale', true);
},
userAvatarLetter() {
if (!this.user) {
return null;
}
return (this.user.displayName || this.user.userId.substring(1)).substring(0, 1).toUpperCase();
return (this.$matrix.userDisplayName || this.user.displayName || this.user.userId.substring(1)).substring(0, 1).toUpperCase();
},
passwordsMatch() {
@ -46,7 +46,7 @@ export default {
})
},
updateDisplayName(name) {
this.$matrix.matrixClient.setDisplayName(name || this.user.userId);
this.$matrix.setUserDisplayName(name || this.user.userId);
}
}
}