Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Fix/component wrapper on rotation #919

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
formatting removed -1
  • Loading branch information
MenamAfzal committed May 29, 2024
commit 36d4f06fcb2f3a07c3eba53e900daeed9385df7f
6 changes: 3 additions & 3 deletions client/packages/lowcoder/src/comps/comps/textComp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const getStyle = (style: TextStyleType) => {
color: ${style.links};
}
.markdown-body {
margin: ${style.margin} !important;
margin: ${style.margin} !important;
padding: ${style.padding};
width: ${widthCalculator(style.margin)};
font-family: ${style.fontFamily} !important;
Expand Down Expand Up @@ -123,8 +123,8 @@ let TextTmpComp = (function () {

const childrenMap = {
text: stringExposingStateControl(
'text',
trans('textShow.text', {name: '{{currentUser.name}}'})
"text",
trans("textShow.text", {name: "{{currentUser.name}}"})
),
autoHeight: AutoHeightControl,
type: dropdownControl(typeOptions, "markdown"),
Expand Down
Loading