1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-26 07:39:04 +02:00

fix arrows error

This commit is contained in:
antelle 2017-05-19 23:36:31 +02:00
parent f40cfaffef
commit 13519a3d5d

View File

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