Commit 7b6c3794 authored by Rajat Jain's avatar Rajat Jain Committed by Brett Walker

Remove manual_sorting flag from FE

parent 1c24ebb0
...@@ -21,7 +21,7 @@ const updateIssue = (url, issueList, { move_before_id, move_after_id }) => ...@@ -21,7 +21,7 @@ const updateIssue = (url, issueList, { move_before_id, move_after_id }) =>
const initManualOrdering = () => { const initManualOrdering = () => {
const issueList = document.querySelector('.manual-ordering'); 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; return;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment