fix arrows error

This commit is contained in:
antelle 2017-05-19 23:36:31 +02:00
parent f40cfaffef
commit 13519a3d5d
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
const Backbone = require('backbone');
const EntryCollection = require('../collections/entry-collection');
const Resizable = require('../mixins/resizable');
const Scrollable = require('../mixins/scrollable');
const ListSearchView = require('./list-search-view');
@ -60,7 +61,7 @@ const ListView = Backbone.View.extend({
this.readTableColumnsEnabled();
this.items = [];
this.items = new EntryCollection();
},
render: function () {