mirror of
				https://github.com/excalidraw/excalidraw.git
				synced 2025-10-31 02:44:50 +01:00 
			
		
		
		
	filter out selection elements on restore (#901)
* filter out selection elements on restore * add comment
This commit is contained in:
		| @@ -13,7 +13,11 @@ export function restore( | ||||
|   opts?: { scrollToContent: boolean }, | ||||
| ): DataState { | ||||
|   const elements = savedElements | ||||
|     .filter(el => !isInvisiblySmallElement(el)) | ||||
|     .filter(el => { | ||||
|       // filtering out selection, which is legacy, no longer kept in elements, | ||||
|       //  and causing issues if retained | ||||
|       return el.type !== "selection" && !isInvisiblySmallElement(el); | ||||
|     }) | ||||
|     .map(element => { | ||||
|       let points: Point[] = []; | ||||
|       if (element.type === "arrow") { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 David Luzar
					David Luzar