Skip to content

Commit

Permalink
Merge pull request #1354 from lowcoder-org/fix/app_search
Browse files Browse the repository at this point in the history
Fix issues with search for application and folder list
  • Loading branch information
FalkWolsky authored Nov 29, 2024
2 parents 3a7fe83 + b9d9716 commit 905e616
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
public enum ApplicationType {
APPLICATION(1),
MODULE(2),
COMPOUND_APPLICATION(3);
COMPOUND_APPLICATION(3),
FOLDER(4);

private final int value;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ private Mono<Tree<ApplicationInfoView, FolderInfoView>> buildApplicationInfoView
.cache();

Flux<ApplicationInfoView> applicationInfoViewFlux =
userHomeApiService.getAllAuthorisedApplications4CurrentOrgMember(applicationType, ApplicationStatus.NORMAL, false, null)
userHomeApiService.getAllAuthorisedApplications4CurrentOrgMember(applicationType, ApplicationStatus.NORMAL, false, name)
.cache();

Mono<Map<String, String>> application2FolderMapMono = applicationInfoViewFlux
Expand Down

0 comments on commit 905e616

Please sign in to comment.