Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
search_api_grouping_solr
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
search_api_grouping_solr
Merge requests
!1
Removed set result count as it causes issues with pagination.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Removed set result count as it causes issues with pagination.
bug/pagination
into
1.x
Overview
0
Commits
1
Pipelines
0
Changes
1
Closed
Sean Dietrich
requested to merge
bug/pagination
into
1.x
1 year ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
1.x
1.x (base)
and
latest version
latest version
3e1fecb3
1 commit,
1 year ago
1 file
+
1
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/Plugin/search_api/processor/DenormalizeAltering.php
+
1
−
2
Options
@@ -180,8 +180,7 @@ class DenormalizeAltering extends ProcessorPluginBase {
$newResultItems
[]
=
$newItem
;
}
// Set the results to the new items array previously created.
$results
->
setResultCount
(
count
(
$newResultItems
));
// Set the results to the new items array previously created.
$results
->
setResultItems
(
$newResultItems
);
}
Loading