From d9e62b54fce0c7f2ef8c1ca264dc1c0ff236451d Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Fri, 14 Jun 2019 18:42:30 +0200 Subject: [PATCH] also support deserializing at-room-pill when transferring editor state --- src/editor/parts.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/editor/parts.js b/src/editor/parts.js index d13a94253f..67d36e6660 100644 --- a/src/editor/parts.js +++ b/src/editor/parts.js @@ -376,6 +376,8 @@ export class PartCreator { return this.plain(part.text); case "newline": return this.newline(); + case "at-room-pill": + return this.atRoomPill(part.text); case "pill-candidate": return this.pillCandidate(part.text); case "room-pill":