Skip to content

Commit

Permalink
assignments panel query usage fix
Browse files Browse the repository at this point in the history
  • Loading branch information
KaterynaHonchar committed Jan 28, 2021
1 parent 408d888 commit 27fc48a
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -86,6 +86,11 @@ protected ISelectableDataProvider<C, PrismContainerValueWrapper<C>> createProvid
MultivalueContainerListDataProvider<C> containersProvider = new MultivalueContainerListDataProvider<C>(this, getSearchModel(), loadValuesModel()) {
private static final long serialVersionUID = 1L;

@Override
protected ObjectQuery getCustomizeContentQuery() {
return MultivalueContainerListPanel.this.getCustomizeContentQuery();
}

@Override
protected List<PrismContainerValueWrapper<C>> searchThroughList() {
List<PrismContainerValueWrapper<C>> resultList = super.searchThroughList();
Expand Down

0 comments on commit 27fc48a

Please sign in to comment.