From da6bd7509b996f52e6673275dbfd4ac922bc3c90 Mon Sep 17 00:00:00 2001 From: Eva Marco Date: Thu, 9 Apr 2026 10:18:21 +0200 Subject: [PATCH] :bug: Fix hot reload on color-row text (#8880) --- .../app/main/ui/workspace/sidebar/options/menus/fill.cljs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/frontend/src/app/main/ui/workspace/sidebar/options/menus/fill.cljs b/frontend/src/app/main/ui/workspace/sidebar/options/menus/fill.cljs index b3509487e2..107150a16e 100644 --- a/frontend/src/app/main/ui/workspace/sidebar/options/menus/fill.cljs +++ b/frontend/src/app/main/ui/workspace/sidebar/options/menus/fill.cljs @@ -52,16 +52,15 @@ [n-props o-props] (and (identical? (unchecked-get n-props "ids") (unchecked-get o-props "ids")) + (identical? (unchecked-get n-props "appliedTokens") + (unchecked-get o-props "appliedTokens")) (let [o-vals (unchecked-get o-props "values") n-vals (unchecked-get n-props "values") o-fills (get o-vals :fills) n-fills (get n-vals :fills) - o-applied-tokens (get o-vals :applied-tokens) - n-applied-tokens (get n-vals :applied-tokens) o-hide (get o-vals :hide-fill-on-export) n-hide (get n-vals :hide-fill-on-export)] (and (identical? o-hide n-hide) - (identical? o-applied-tokens n-applied-tokens) (identical? o-fills n-fills))))) (mf/defc fill-menu*