Skip to content

Commit

Permalink
Merge pull request #635 from lowcoder-org/dev
Browse files Browse the repository at this point in the history
Dev -> update feature branch
  • Loading branch information
FalkWolsky authored Jan 15, 2024
2 parents e1e8b3b + 96da6e4 commit a6685f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ export const ColorSelect = (props: ColorSelectProps) => {
}, 200),
[dispatch]
);

return (
<Popover
trigger={trigger}
Expand Down Expand Up @@ -170,7 +169,7 @@ const BackDiv = styled.div.attrs<{ $color: string }>((props: { $color: string })
`;
// main block
const ColorBlock = styled.div<{ $color: string }>`
background-color: ${(props) => (isValidColor(props.$color) ? props.color : "#FFFFFF")};
background-color: ${(props) => (isValidColor(props.$color) ? props.$color : "#FFFFFF")};
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 4px;
height: 24px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const SelectOptionContains = styled.div`
align-items: center;
width: 99%;
`;
const SelectOption = styled((props: OptionProps) => <Option {...props} />)`
const SelectOption = styled(Option)`
display: flex;
justify-content: space-between;
Expand Down

0 comments on commit a6685f9

Please sign in to comment.