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

Skip to content

Dev -> Main v2.4.8 #1222

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 24 commits into from
Oct 3, 2024
Merged
Changes from 2 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e4b6316
fixed dropdown column actions not working in table
raheeliftikhar5 Sep 30, 2024
1d95e4c
fix blank screen issue when refresh folder page
raheeliftikhar5 Sep 30, 2024
d628d86
fix rename issue
goldants Oct 1, 2024
045141c
fix table not working in comp docs
raheeliftikhar5 Oct 2, 2024
9efdf32
fix theme styling issue with active/inactive preventOverwritingStyles…
raheeliftikhar5 Oct 2, 2024
7e757d2
apply style changes when preventOverwriteStyles is inactive
raheeliftikhar5 Oct 2, 2024
3e6df96
change icons as lazy icons and process it's dependencies
Imiss-U1025 Oct 2, 2024
aa9e0e3
Merge branch 'dev' into feature-viewer
FalkWolsky Oct 2, 2024
d8133ce
Merge pull request #1219 from lowcoder-org/feature-viewer
FalkWolsky Oct 2, 2024
76c8e81
load lowcoder-comps from npm
raheeliftikhar5 Oct 3, 2024
b8ac079
Updating React JSON Schema Form
Oct 3, 2024
cd35441
fixed tabbedContainer's switchTab event listener trigger twice
raheeliftikhar5 Oct 3, 2024
768d1c5
Updating React JSON Schema Form - and implement Grid System + Select …
Oct 3, 2024
7476693
Update JSON Schema Form 2
Oct 3, 2024
47fe7ac
Update Firebase Datasource Plugin
Oct 3, 2024
caa3065
fix styles not working on table and container based comps
raheeliftikhar5 Oct 3, 2024
27059f6
Update graphql, graphql-request, openapi-types and swagger-client in …
Oct 3, 2024
df6e41e
Merge pull request #1220 from lowcoder-org/fix/renameapp
FalkWolsky Oct 3, 2024
61261a0
Update graphql, graphql-request, openapi-types and swagger-client in …
Oct 3, 2024
9481da0
Merge branch 'dev' into theme-style-fixes
FalkWolsky Oct 3, 2024
1cd0379
Merge pull request #1217 from lowcoder-org/theme-style-fixes
FalkWolsky Oct 3, 2024
ea89be5
Add Env Var for cookie max age:
goldants Oct 3, 2024
d22d5c5
rename to LOWCODER_COOKIE_MAX_AGE
goldants Oct 3, 2024
1548515
Merge pull request #1221 from lowcoder-org/fix/cookie_age_env_var
FalkWolsky Oct 3, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ const BackgroundWrapper = styled.div<{
border-style: ${(props) => props.$style.borderStyle} !important;
border-width: ${(props) => `${props.$style.borderWidth} !important`};
border-color: ${(props) => `${props.$style.border} !important`};
height: calc(100% - ${(props) => getVerticalMargin(props.$style.margin.split(' '))});
height: calc(100% - ${(props) => props.$style.margin && getVerticalMargin(props.$style.margin.split(' '))});
overflow: hidden;

> div.table-scrollbar-wrapper {
Expand Down
Loading