put display name in user pill text fallback instead of mxid

pull/21833/head
Bruno Windels 2019-08-30 11:51:29 +02:00
parent 4779880a94
commit b16f983a1f
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ export function textSerialize(model) {
return text + part.text;
case "room-pill":
case "user-pill":
return text + `${part.resourceId}`;
return text + `${part.text}`;
}
}, "");
}