summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2017-08-11 14:35:47 +0100
committerPhil Hughes <me@iamphill.com>2017-08-17 11:55:08 +0100
commit590a2035ef4fbfb02da2a4f05490f33a8abe5bf6 (patch)
tree02707b2065916c3abe134a371a19261e62dd18cc
parentfbd226ae48f54415d5ff566848668c2d932fd57a (diff)
downloadgitlab-ce-590a2035ef4fbfb02da2a4f05490f33a8abe5bf6.tar.gz
Fixed height of group share dropdown
Closes https://gitlab.com/gitlab-org/gitlab-ee/issues/3149
-rw-r--r--app/assets/javascripts/groups_select.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/app/assets/javascripts/groups_select.js b/app/assets/javascripts/groups_select.js
index b5975295329..4d629bc6326 100644
--- a/app/assets/javascripts/groups_select.js
+++ b/app/assets/javascripts/groups_select.js
@@ -111,8 +111,7 @@ window.GroupsSelect = (function() {
};
GroupsSelect.prototype.forceOverflow = function (e) {
- const itemHeight = this.dropdown.querySelector('.select2-result:first-child').clientHeight;
- this.dropdown.style.height = `${Math.floor(this.dropdown.scrollHeight - (itemHeight * 0.9))}px`;
+ this.dropdown.style.height = `${Math.floor(this.dropdown.scrollHeight)}px`;
};
GroupsSelect.PER_PAGE = 20;