Skip to content

Commit 23767c4

Browse files
Merge branch 'dev' into feature/add-event-handler
2 parents d23fc09 + ace9e1e commit 23767c4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/packages/lowcoder/src/comps/comps/selectInputComp/selectComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ let SelectBasicComp = (function () {
2828
style: withDefault(styleControl(InputFieldStyle),{background:'transparent'}),
2929
labelStyle: styleControl(LabelStyle),
3030
inputFieldStyle: withDefault(styleControl(SelectStyle),{borderWidth:'1px'}),
31-
childrenInputFieldStyle: styleControl(ChildrenMultiSelectStyle)
31+
childrenInputFieldStyle: withDefault(styleControl(ChildrenMultiSelectStyle),{text:'#000'})
3232
};
3333
return new UICompBuilder(childrenMap, (props, dispatch) => {
3434
const [

client/packages/lowcoder/src/comps/controls/styleControlConstants.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1243,7 +1243,7 @@ export const TabContainerStyle = [
12431243
[
12441244
...ContainerStyle.filter(
12451245
(style) =>
1246-
["border", "radius", "f", "margin", "padding"].includes(
1246+
["border", "radius", "f", "margin", "padding",'borderWidth','borderStyle'].includes(
12471247
style.name
12481248
) === false
12491249
),

0 commit comments

Comments
 (0)