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:
authorRajat Jain <rjain@gitlab.com>2019-07-26 11:25:36 +0300
committerBrett Walker <bwalker@gitlab.com>2019-07-31 21:52:06 +0300
commit7b6c37946d23e19ac65c23fa79c9d9e41d0218af (patch)
tree8c0db11bd533c999314c601e6baec5ed637bed4a /app/assets/javascripts/manual_ordering.js
parent1c24ebb0f44e7281c578510848aeec9cdbec1ffd (diff)
Remove manual_sorting flag from FE
Diffstat (limited to 'app/assets/javascripts/manual_ordering.js')
-rw-r--r--app/assets/javascripts/manual_ordering.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/manual_ordering.js b/app/assets/javascripts/manual_ordering.js
index 012d1e70410..29a0e5a904a 100644
--- a/app/assets/javascripts/manual_ordering.js
+++ b/app/assets/javascripts/manual_ordering.js
@@ -21,7 +21,7 @@ const updateIssue = (url, issueList, { move_before_id, move_after_id }) =>
const initManualOrdering = () => {
const issueList = document.querySelector('.manual-ordering');
- if (!issueList || !(gon.features && gon.features.manualSorting) || !(gon.current_user_id > 0)) {
+ if (!issueList || !(gon.current_user_id > 0)) {
return;
}