From b16f983a1f509004d4238d632ee7444ef5c5120e Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Fri, 30 Aug 2019 11:51:29 +0200 Subject: [PATCH] put display name in user pill text fallback instead of mxid --- src/editor/serialize.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/editor/serialize.js b/src/editor/serialize.js index 5a1a941309..f3371ac8ee 100644 --- a/src/editor/serialize.js +++ b/src/editor/serialize.js @@ -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}`; } }, ""); }