From 52a576dc4d91306ce4de36079424f0d6f34b3519 Mon Sep 17 00:00:00 2001 From: "alonso.torres" Date: Wed, 25 Mar 2026 15:35:37 +0100 Subject: [PATCH] :bug: Fix problem with fills in text range --- frontend/src/app/plugins/text.cljs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/plugins/text.cljs b/frontend/src/app/plugins/text.cljs index 08dc64db12..1154af2366 100644 --- a/frontend/src/app/plugins/text.cljs +++ b/frontend/src/app/plugins/text.cljs @@ -11,7 +11,7 @@ [app.common.geom.shapes.text :as gst] [app.common.record :as crc] [app.common.schema :as sm] - [app.common.types.shape :as cts] + [app.common.types.fills :as types.fills] [app.common.types.text :as txt] [app.main.data.workspace.shapes :as dwsh] [app.main.data.workspace.texts :as dwt] @@ -370,7 +370,7 @@ (fn [_ value] (let [value (parser/parse-fills value)] (cond - (not (sm/validate [:vector ::cts/fill] value)) + (not (sm/validate [:vector types.fills/schema:fill] value)) (u/not-valid plugin-id :fills value) (not (r/check-permission plugin-id "content:write"))