Skip to content

Commit

Permalink
JNG-4643: fix missing operation output screens (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
noherczeg authored Mar 16, 2023
1 parent e79a5f4 commit 091c0a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ private static Boolean keepPageType(PageDefinition page) {
}
// Currently there is a shady behaviour where in for single relations we would generate TABLE screens
// as well. We think this is a transformation bug, therefore for now we exclude these.
return pageType.equals(PageType.VIEW);
return pageType.equals(PageType.VIEW) || pageType.equals(PageType.OPERATION_OUTPUT);
}
}

Expand Down

0 comments on commit 091c0a1

Please sign in to comment.