mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-09-28 19:59:59 +02:00
fix: text restore & deletion issues (#9853)
This commit is contained in:
@@ -258,11 +258,16 @@ export const loadScene = async (
|
||||
await importFromBackend(id, privateKey),
|
||||
localDataState?.appState,
|
||||
localDataState?.elements,
|
||||
{ repairBindings: true, refreshDimensions: false },
|
||||
{
|
||||
repairBindings: true,
|
||||
refreshDimensions: false,
|
||||
deleteEmptyTextElements: true,
|
||||
},
|
||||
);
|
||||
} else {
|
||||
data = restore(localDataState || null, null, null, {
|
||||
repairBindings: true,
|
||||
deleteEmptyTextElements: true,
|
||||
});
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user