mirror of
https://github.com/excalidraw/excalidraw-embed.git
synced 2026-05-17 13:30:39 +00:00
fix isDeleted migration
This commit is contained in:
+1
-1
@@ -33,7 +33,7 @@ function migrateElementWithProperties<T extends ExcalidrawElement>(
|
||||
// newly added elements
|
||||
version: element.version || 1,
|
||||
versionNonce: element.versionNonce ?? 0,
|
||||
isDeleted: false,
|
||||
isDeleted: element.isDeleted ?? false,
|
||||
id: element.id || randomId(),
|
||||
fillStyle: element.fillStyle || "hachure",
|
||||
strokeWidth: element.strokeWidth || 1,
|
||||
|
||||
Reference in New Issue
Block a user