Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.display.view.web/src/org/eclipse/osee/display/view/web/components/OseeSearchResultsListComponent.java')
-rw-r--r--plugins/org.eclipse.osee.display.view.web/src/org/eclipse/osee/display/view/web/components/OseeSearchResultsListComponent.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/org.eclipse.osee.display.view.web/src/org/eclipse/osee/display/view/web/components/OseeSearchResultsListComponent.java b/plugins/org.eclipse.osee.display.view.web/src/org/eclipse/osee/display/view/web/components/OseeSearchResultsListComponent.java
index 691ea80b383..ca8074756f6 100644
--- a/plugins/org.eclipse.osee.display.view.web/src/org/eclipse/osee/display/view/web/components/OseeSearchResultsListComponent.java
+++ b/plugins/org.eclipse.osee.display.view.web/src/org/eclipse/osee/display/view/web/components/OseeSearchResultsListComponent.java
@@ -186,6 +186,9 @@ public class OseeSearchResultsListComponent extends VerticalLayout implements Se
int lastCompIndex = mainLayout.getComponentIndex(bottomSpacer);
mainLayout.addComponent(searchResultComp, lastCompIndex);
+ //This call is needed in order to only show those results which are on the current page.
+ updateSearchResultsLayout();
+
return searchResultComp;
}

Back to the top