Skip to content

Commit

Permalink
added search value to find logs
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonioG70 committed Dec 2, 2024
1 parent 08af643 commit 2fe4374
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,11 @@ private static FlowPanel getDatabaseParameters(ActivityLogWrapper wrapper) {
handleFilterInfo(panel, wrapper);
handleSublistInfo(panel, wrapper);
return panel;
case "retrieve":
case "find":
case "findAll":
handleFilterInfo(panel, wrapper);
return panel;
case "retrieve":
case "deleteDatabase":
handleDatabaseInfo(panel, wrapper);
break;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ public ActivityLogStrategy getStrategy(String actionComponent, String actionMeth
composeLogStrategy.getOperationList().add(new FacetsOperation());
composeLogStrategy.getOperationList().add(new SublistOperation());
return composeLogStrategy;
case "find":
case "findAll":
composeLogStrategy.clearOperationList();
composeLogStrategy.getOperationList().add(new FilterOperation());
Expand Down

0 comments on commit 2fe4374

Please sign in to comment.