Skip to content

Commit c86afa3

Browse files
author
FalkWolsky
committed
Update Lowcoder CLI Version
Fix small bug in Lowcoder Design
1 parent ab6d195 commit c86afa3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

client/packages/lowcoder-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "lowcoder-cli",
33
"description": "CLI tool used to start build publish lowcoder components",
4-
"version": "0.0.28",
4+
"version": "0.0.29",
55
"license": "MIT",
66
"bin": "./index.js",
77
"type": "module",

client/packages/lowcoder-design/src/components/colorSelect/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export const ColorSelect = (props: ColorSelectProps) => {
4545
<div style={{ position: "relative" }}>
4646
<RgbaStringColorPicker color={pickerColor.current} onChange={throttleChange} />
4747
<AlphaDiv color={color?.substring(0, 7)}>
48-
<BackDiv $color={alphaOfRgba(toRGBA(color))}></BackDiv>
48+
<BackDiv color={alphaOfRgba(toRGBA(color))}></BackDiv>
4949
</AlphaDiv>
5050
</div>
5151
<ConstantDiv>
@@ -66,7 +66,7 @@ export const ColorSelect = (props: ColorSelectProps) => {
6666
}
6767
>
6868
<ColorBlock $color={color?.substring(0, 7)}>
69-
<BackDiv $color={alphaOfRgba(toRGBA(color))}></BackDiv>
69+
<BackDiv color={alphaOfRgba(toRGBA(color))}></BackDiv>
7070
</ColorBlock>
7171
</Popover>
7272
);

0 commit comments

Comments
 (0)