Skip to content

Commit 3151d73

Browse files
author
FalkWolsky
committed
Fixing 2.2.0 bugs - 2
1 parent 11bd51c commit 3151d73

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

client/package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
"type": "module",
55
"private": true,
66
"workspaces": [
7-
"packages/*",
8-
"packages/lowcoder-dev-utils"
7+
"packages/*"
98
],
109
"engines": {
1110
"node": "^14.18.0 || >=16.0.0"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ const RowHeightTempComp = withContext(
145145
.setPropertyViewFn((children) =>
146146
children.height.propertyView({
147147
label: rowHeightLabel,
148-
tooltip: trans("table.rowColorDesc"),
148+
tooltip: trans("table.rowHeightDesc"),
149149
})
150150
)
151151
.build(),

client/packages/lowcoder/src/comps/comps/textComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { EditorContext } from "comps/editorState";
2424
const getStyle = (style: TextStyleType) => {
2525
return css`
2626
border-radius: ${(style.radius ? style.radius : "4px")};
27-
border: ${(style.borderWidth ? style.borderWidth : "1px")} solid ${style.border};
27+
border: ${(style.borderWidth ? style.borderWidth : "0px")} solid ${style.border};
2828
color: ${style.text};
2929
background-color: ${style.background};
3030
.markdown-body a {

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ function calcColors<ColorMap extends Record<string, string>>(
135135
res[name] = themeWithDefault[config.radius];
136136
}
137137
if (isBorderWidthConfig(config)) {
138-
res[name] = '1px';
138+
res[name] = '0px';
139139
}
140140
if (isTextSizeConfig(config)) {
141141
// TODO: remove default textSize after added in theme in backend.

deploy/docker/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,8 @@ COPY ./client /lowcoder-client
128128
WORKDIR /lowcoder-client
129129
RUN yarn --immutable
130130

131+
# TODO: build lowcoder-comps
132+
131133
# curl is required for yarn build to succeed, because it calls it while building client
132134
RUN apt-get update && apt-get install -y --no-install-recommends curl ca-certificates
133135

0 commit comments

Comments
 (0)