From ab0cd29af95262953ed760753096ed98aaad7af0 Mon Sep 17 00:00:00 2001 From: Florian Schroedl Date: Tue, 3 Dec 2024 17:08:29 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20Add=20todo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/app/main/ui/workspace/tokens/sets.cljs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/frontend/src/app/main/ui/workspace/tokens/sets.cljs b/frontend/src/app/main/ui/workspace/tokens/sets.cljs index ceea17cfe..145cd2f95 100644 --- a/frontend/src/app/main/ui/workspace/tokens/sets.cljs +++ b/frontend/src/app/main/ui/workspace/tokens/sets.cljs @@ -91,12 +91,12 @@ :icon (if @collapsed? "arrow-right" "arrow-down") :variant "action"}] (if editing?' - (let [on-submit #(on-edit-submit)] - [:& editing-label - {:default-value label - :on-cancel on-edit-reset - :on-create on-edit-reset - :on-submit on-submit}]) + [:& editing-label + {:default-value label + :on-cancel on-edit-reset + :on-create on-edit-reset + ;; TODO Implement set group renaming + :on-submit (constantly nil)}] [:div {:class (stl/css :set-name) :on-double-click #(on-edit tree-path)} label])]))