Skip to content

Commit

Permalink
LPD-37462 Sorting order is not supported so remove it from management…
Browse files Browse the repository at this point in the history
… toolbar
  • Loading branch information
ealonso authored and brianchandotcom committed Sep 27, 2024
1 parent 8c5b029 commit 9f7095f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@ public String getSearchFormName() {
return "searchFm";
}

@Override
public String getSortingURL() {
return null;
}

@Override
public Boolean isSelectable() {
return false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ public String getSearchFormName() {
return "searchFm";
}

@Override
public String getSortingURL() {
return null;
}

@Override
public Boolean isSelectable() {
return false;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ public String getSearchFormName() {
return "searchFm";
}

@Override
public String getSortingURL() {
return null;
}

@Override
public Boolean isSelectable() {
return false;
Expand Down

0 comments on commit 9f7095f

Please sign in to comment.