Skip to content

Commit

Permalink
fix for visibility of 'Actions executed' on operation statistics pane…
Browse files Browse the repository at this point in the history
…l on task page (MID-7301)
  • Loading branch information
skublik committed Oct 19, 2021
1 parent 92b1b5c commit afec68b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ protected WebMarkupContainer createHeader(String headerId) {
};

actionTable.setOutputMarkupId(true);
actionTable.add(new VisibleBehaviour(() -> !dataProvider.getAvailableData().isEmpty()));
actionTable.add(new VisibleBehaviour(() -> !dataProvider.getAvailableData().isEmpty() || dataProvider.size() > 0));
add(actionTable);
}

Expand Down

0 comments on commit afec68b

Please sign in to comment.