From cbec382774d0fdd1632cbe0d62ef9f650752dcc6 Mon Sep 17 00:00:00 2001 From: Daniel von Atzigen Date: Wed, 5 Feb 2025 11:48:50 +0100 Subject: [PATCH] Fix geometries not being editable --- ui/src/toolbox/GeometryController.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/toolbox/GeometryController.ts b/ui/src/toolbox/GeometryController.ts index 91680d09a..0f2d09732 100644 --- a/ui/src/toolbox/GeometryController.ts +++ b/ui/src/toolbox/GeometryController.ts @@ -471,8 +471,8 @@ export class GeometryController { description: attributes.description ?? '', image: attributes.image ?? '', website: attributes.website ?? '', - editable: attributes.editable ?? attributes.editable, - copyable: attributes.copyable ?? attributes.copyable, + editable: attributes.editable ?? true, + copyable: attributes.copyable ?? true, } }; const color = attributes.color;