Skip to content

Dev -> Main v2.6.2 #1515

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 28 commits into from
Feb 9, 2025
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
3a7daae
Show indicator on event panel headers
Imiss-U1025 Feb 4, 2025
9f02fc7
fix issue with variable update of event panel when query change
Imiss-U1025 Feb 4, 2025
5b08e71
#1397: Selecting current activeAuthId when "inherit from login" is se…
dragonpoo Feb 4, 2025
8a0884e
Add custom control for variable header
Imiss-U1025 Feb 5, 2025
ffbe25a
apply name checking to control
Imiss-U1025 Feb 5, 2025
f1f03b0
Check only key
Imiss-U1025 Feb 5, 2025
5a374db
Fixed cancelled requests issue in custom comp
raheeliftikhar5 Feb 5, 2025
3e41004
fix import statement
Imiss-U1025 Feb 5, 2025
296e25b
Merge pull request #1506 from lowcoder-org/fix/variable_header_contro…
FalkWolsky Feb 5, 2025
0e64a0e
Make the variable name unique among editorState
Imiss-U1025 Feb 6, 2025
221a848
Merge pull request #1509 from lowcoder-org/fix/global_unique_variable…
FalkWolsky Feb 6, 2025
280387d
check variable name list for uniqueness of name
Imiss-U1025 Feb 6, 2025
2894883
load custom_component files from build package instead of sdk bundle
raheeliftikhar5 Feb 7, 2025
36f0611
Fix null pointer exception when editingApplicationDSL is null
dragonpoo Feb 7, 2025
1f6ed88
Merge pull request #1512 from lowcoder-org/fix/null_category
FalkWolsky Feb 7, 2025
9491cb9
Merge pull request #1511 from lowcoder-org/fix/global_unique_variable…
FalkWolsky Feb 7, 2025
d94a667
added mobile/table/desktop preview option with landscape/portrait mode
raheeliftikhar5 Feb 7, 2025
c3aa49a
use canvas width to update screen info
raheeliftikhar5 Feb 7, 2025
59324cd
Merge pull request #1513 from lowcoder-org/feat/mobile-preview
FalkWolsky Feb 7, 2025
22896e8
Merge pull request #1501 from lowcoder-org/feature/auth_header_of_query
FalkWolsky Feb 7, 2025
80934b5
Merge pull request #1499 from lowcoder-org/fix/show_indicator_on_even…
FalkWolsky Feb 7, 2025
15a98e8
Update to ANTd 5.23.4 - Adaptions on Responsive Layout and Introducti…
Feb 8, 2025
496c100
SplitLayout Component
Feb 8, 2025
431e705
Adapting Mobile Preview
Feb 8, 2025
9a5ce3d
Adapting Preview v2
Feb 9, 2025
34faa66
Icons and small improvements for SplitLayout
Feb 9, 2025
c94eca0
Small fixes for left menu after ANTd Update
Feb 9, 2025
041aef5
Version Update to prepare Release 2.6.2
Feb 9, 2025
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 @@ -100,7 +100,7 @@ export const KeyValueList = (props: {
return (
<>
{props.list.map((item, index) => (
<IndicatorWrapper key={index}>
<IndicatorWrapper key={index} indicatorForAll={props.indicatorForAll}>
<KeyValueListItem key={index /* FIXME: find a proper key instead of `index` */}>
{item}
{!props.isStatic &&
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ const ExecuteQueryPropertyView = ({
placement?: "query" | "table"
}) => {
const getQueryOptions = useCallback((editorState?: EditorState) => {
const options: { label: string; value: string; variable?: Record<string, string> }[] =
const options: { label: string; value: string; variables?: Record<string, string> }[] =
editorState
?.queryCompInfoList()
.map((info) => {
return {
label: info.name,
value: info.name,
variable: info.data.variable,
variables: info.data.variables,
}
})
.filter(
Expand Down Expand Up @@ -79,7 +79,7 @@ const ExecuteQueryPropertyView = ({
onChange={(value) => {
const options = getQueryOptions(editorState);
const selectedQuery = options.find(option => option.value === value);
const variables = selectedQuery ? Object.keys(selectedQuery.variable || {}) : [];
const variables = selectedQuery ? Object.keys(selectedQuery.variables || {}) : [];
comp.dispatchChangeValueAction({
queryName: value,
queryVariables: variables.map((variable) => ({key: variable, value: ''})),
Expand Down