Commit 7f58fc0e authored by Phil Hughes's avatar Phil Hughes Committed by Fatih Acet

Removed backlog frontend code

parent 26d61113
......@@ -59,8 +59,6 @@ $(() => {
gl.boardService.all()
.then((resp) => {
resp.json().forEach((board) => {
if (board.list_type === 'backlog') return;
const list = Store.addList(board);
if (list.type === 'done') {
......
......@@ -9,7 +9,7 @@ class List {
this.position = obj.position;
this.title = obj.title;
this.type = obj.list_type;
this.preset = ['backlog', 'done', 'blank'].indexOf(this.type) > -1;
this.preset = ['done', 'blank'].indexOf(this.type) > -1;
this.filters = gl.issueBoards.BoardsStore.state.filters;
this.page = 1;
this.loading = true;
......
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