Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Dev -> Main 2.6.5#1611

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
FalkWolsky merged 14 commits intomainfromdev
Mar 31, 2025
Merged
Changes from2 commits
Commits
Show all changes
14 commits
Select commitHold shift + click to select a range
92fa58e
Fix folder move from root to subfolder
dragonpooMar 24, 2025
cdcc74e
Merge pull request #1595 from lowcoder-org/fix/folder_move
FalkWolskyMar 25, 2025
d8d626e
[FIX] Table Column Cell text overlap #1272
iamfaranMar 25, 2025
047a9f1
Merge pull request #1597 from iamfaran/fix/table-overlap-1272
FalkWolskyMar 25, 2025
232bed3
fixed issue with dynamic data replaced with json on data updates
raheeliftikhar5Mar 25, 2025
13dd1f6
fixed embedded apps with custom comps not working
raheeliftikhar5Mar 25, 2025
36c9085
allow deleting all query variables
raheeliftikhar5Mar 25, 2025
57e34bb
Fix multiple queries creation on duplicate query
raheeliftikhar5Mar 26, 2025
d3e06ba
updated query's variableComp to expose value properly
raheeliftikhar5Mar 30, 2025
17d38c1
update varibles usage in query comp
raheeliftikhar5Mar 30, 2025
dfd1673
update variables usage in execute query action
raheeliftikhar5Mar 30, 2025
4270f36
fix inital context usage in action control
raheeliftikhar5Mar 30, 2025
859653e
fix inputs not passed to module when used inside list/grid
raheeliftikhar5Mar 30, 2025
cda8b6d
Update Version Numbers for upcoming Release
Mar 31, 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 numberDiff line numberDiff line change
Expand Up@@ -8,6 +8,7 @@
import org.lowcoder.api.util.GidService;
import org.lowcoder.domain.application.model.ApplicationType;
import org.lowcoder.domain.folder.model.Folder;
import org.lowcoder.domain.folder.model.FolderElement;
import org.lowcoder.domain.folder.service.FolderElementRelationService;
import org.lowcoder.domain.folder.service.FolderService;
import org.lowcoder.domain.permission.model.ResourceRole;
Expand DownExpand Up@@ -92,7 +93,7 @@ public Mono<PageResponseView<?>> getElements(@RequestParam(value = "id", require
@Override
public Mono<ResponseView<Void>> move(@PathVariable("id") String applicationLikeId,
@RequestParam(value = "targetFolderId", required = false) String targetFolderId) {
return folderElementRelationService.getByElementIds(List.of(applicationLikeId)).next().flatMap(folderElement ->
return folderElementRelationService.getByElementIds(List.of(applicationLikeId)).next().defaultIfEmpty(new FolderElement(null, null)).flatMap(folderElement ->
gidService.convertFolderIdToObjectId(targetFolderId).flatMap(objectId ->
folderApiService.move(applicationLikeId, objectId.orElse(null))
.then(businessEventPublisher.publishApplicationCommonEvent(applicationLikeId, folderElement.folderId(), objectId.orElse(null), APPLICATION_MOVE))
Expand Down

[8]ページ先頭

©2009-2025 Movatter.jp