mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
fix: support collaboration in bounded text (#4580)
This commit is contained in:
parent
a51ed9ced6
commit
1ef287027b
1 changed files with 1 additions and 1 deletions
|
@ -136,7 +136,7 @@ const restoreElement = (
|
|||
textAlign: element.textAlign || DEFAULT_TEXT_ALIGN,
|
||||
verticalAlign: element.verticalAlign || DEFAULT_VERTICAL_ALIGN,
|
||||
containerId: element.containerId ?? null,
|
||||
originalText: element.originalText ?? "",
|
||||
originalText: element.originalText || element.text,
|
||||
});
|
||||
case "freedraw": {
|
||||
return restoreElementWithProperties(element, {
|
||||
|
|
Loading…
Add table
Reference in a new issue