Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-08-02 00:09:22 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-08-02 00:09:22 +0300
commitc25993c0fc4bee979facf97b38f270c8fd15bd47 (patch)
tree5a3d9301871b7350737197d90af82264a82897cb /app/finders
parentfb7b3d71b179f877dca72d86eccf29eeb9f883b7 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/finders')
-rw-r--r--app/finders/tags_finder.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/finders/tags_finder.rb b/app/finders/tags_finder.rb
index 16bba62f766..52b1fff4883 100644
--- a/app/finders/tags_finder.rb
+++ b/app/finders/tags_finder.rb
@@ -2,7 +2,7 @@
class TagsFinder < GitRefsFinder
def execute(gitaly_pagination: false)
- tags = if gitaly_pagination
+ tags = if gitaly_pagination && search.blank?
repository.tags_sorted_by(sort, pagination_params)
else
repository.tags_sorted_by(sort)