Skip to content

Commit 770b13c

Browse files
authored
Merge pull request #876 from MenamAfzal/fix/style-issues
Fix/style issues
2 parents e944ae0 + 25f6915 commit 770b13c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/packages/lowcoder/src/comps/comps/tableComp/tableTypes.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ const tableChildrenMap = {
210210
toolbarStyle: styleControl(TableToolbarStyle),
211211
headerStyle:withDefault(styleControl(TableHeaderStyle), {borderWidth: '1px'}),
212212
searchText: StringControl,
213-
columnsStyle: styleControl(TableColumnStyle),
213+
columnsStyle: withDefault(styleControl(TableColumnStyle), {radius:'0px'}),
214214
viewModeResizable: BoolControl,
215215
visibleResizables: BoolControl,
216216
// sample data for regenerating columns

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ function calcColors<ColorMap extends Record<string, string>>(
473473
res[name] = themeWithDefault[config.textDecoration] || 'none'
474474
}
475475
if(isBorderStyleConfig(config)){
476-
res[name] = themeWithDefault[config.borderStyle] || 'dashed'
476+
res[name] = themeWithDefault[config.borderStyle] || 'solid'
477477
}
478478
if (isMarginConfig(config)) {
479479
res[name] = themeWithDefault[config.margin];

0 commit comments

Comments
 (0)