Skip to content

Commit

Permalink
Fixed stack overflow in search panel
Browse files Browse the repository at this point in the history
  • Loading branch information
tonydamage committed Jul 7, 2022
1 parent cb7be0e commit 84145a1
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -180,14 +180,16 @@ protected String load() {
private static final long serialVersionUID = 1L;
@Override
protected void searchPerformed(AjaxRequestTarget target) {
searchPerformed(target);
SearchPanel.this.searchPerformed(target);
}


@Override
protected void menuItemSelected(AjaxRequestTarget target, SearchBoxModeType searchBoxModeType) {
searchBoxTypeUpdated(target, searchBoxModeType);
}


@Override
public IModel<Boolean> isMenuItemVisible(SearchBoxModeType searchBoxModeType) {
if (SearchBoxModeType.AXIOM_QUERY.equals(searchBoxModeType)) {
Expand Down

0 comments on commit 84145a1

Please sign in to comment.