From a7e79b13f985ca296b781fc3775a17e92e0d4e14 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 9 Mar 2022 15:12:07 +0100 Subject: [PATCH] :bug: Fix library selection on color palette --- frontend/src/app/main/ui/workspace/colorpalette.cljs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/main/ui/workspace/colorpalette.cljs b/frontend/src/app/main/ui/workspace/colorpalette.cljs index 813e5fbb7d..ceec91be7c 100644 --- a/frontend/src/app/main/ui/workspace/colorpalette.cljs +++ b/frontend/src/app/main/ui/workspace/colorpalette.cljs @@ -31,11 +31,11 @@ (l/derived st/state))) (def selected-palette-ref - (-> (l/in [:workspace-local :selected-palette]) + (-> (l/in [:workspace-global :selected-palette]) (l/derived st/state))) (def selected-palette-size-ref - (-> (l/in [:workspace-local :selected-palette-size]) + (-> (l/in [:workspace-global :selected-palette-size]) (l/derived st/state))) ;; --- Components