Removed backlog frontend code

This commit is contained in:
Phil Hughes 2017-01-27 17:13:37 +00:00 committed by Fatih Acet
parent 26d61113cf
commit 7f58fc0e99
2 changed files with 1 additions and 3 deletions

View file

@ -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') {

View file

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