Remove manual_sorting flag from FE

This commit is contained in:
Rajat Jain 2019-07-26 13:55:36 +05:30 committed by Brett Walker
parent 1c24ebb0f4
commit 7b6c37946d
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}