Commit 31ce5f32 authored by Tim Zallmann's avatar Tim Zallmann

Merge branch 'winh-new-list-sorting' into 'master'

Remove list sorting from NewListDropdown

See merge request gitlab-org/gitlab-ce!29077
parents d94b092e 1d24615f
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
import $ from 'jquery'; import $ from 'jquery';
import axios from '~/lib/utils/axios_utils'; import axios from '~/lib/utils/axios_utils';
import _ from 'underscore';
import CreateLabelDropdown from '../../create_label'; import CreateLabelDropdown from '../../create_label';
import boardsStore from '../stores/boards_store'; import boardsStore from '../stores/boards_store';
...@@ -78,8 +77,6 @@ export default function initNewListDropdown() { ...@@ -78,8 +77,6 @@ export default function initNewListDropdown() {
color: label.color, color: label.color,
}, },
}); });
boardsStore.state.lists = _.sortBy(boardsStore.state.lists, 'position');
} }
}, },
}); });
......
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