From a2ac2bc6c62d9bdd99efc5a92a9f99f73c4e545c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?andr=C3=A9s=20gonz=C3=A1lez?= Date: Wed, 21 May 2025 13:12:33 +0200 Subject: [PATCH] :sparkles: Change copy as SVG menu order (#6523) --- frontend/src/app/main/ui/workspace/context_menu.cljs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/main/ui/workspace/context_menu.cljs b/frontend/src/app/main/ui/workspace/context_menu.cljs index e776ea3fc..dc86ee476 100644 --- a/frontend/src/app/main/ui/workspace/context_menu.cljs +++ b/frontend/src/app/main/ui/workspace/context_menu.cljs @@ -204,12 +204,12 @@ [:> menu-entry* {:title (tr "workspace.shape.menu.copy-paste-as") :on-pointer-enter (when (cf/check-browser? :chrome) handle-hover-copy-paste)} - [:> menu-entry* {:title (tr "workspace.shape.menu.copy-svg") - :on-click handle-copy-svg}] [:> menu-entry* {:title (tr "workspace.shape.menu.copy-css") :on-click handle-copy-css}] [:> menu-entry* {:title (tr "workspace.shape.menu.copy-css-nested") :on-click handle-copy-css-nested}] + [:> menu-entry* {:title (tr "workspace.shape.menu.copy-svg") + :on-click handle-copy-svg}] [:> menu-separator* {}]