Skip to content

Commit 2a13c3d

Browse files
authored
fix: keep property in advanced panel when use color thumb (#5364)
Edited value lost "listed" flag when threw it out of advanced panel.
1 parent c62982f commit 2a13c3d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/builder/app/builder/shared/css-editor/css-editor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ const AdvancedPropertyValue = ({
153153
}
154154
}}
155155
onChangeComplete={(styleValue) => {
156-
onSetProperty(styleDecl.property)(styleValue);
156+
onSetProperty(styleDecl.property)(styleValue, { listed: true });
157157
}}
158158
/>
159159
)

0 commit comments

Comments
 (0)