[Fix]can't open form of data out of kanban

lp bug: https://launchpad.net/bugs/1103518 fixed

bzr revid: vja@tinyerp.com-20130124102411-rt3nyp5s4xgbio2t
This commit is contained in:
Vishmita 2013-01-24 15:54:11 +05:30
parent 688bb77d95
commit 6af11ee387
1 changed files with 1 additions and 1 deletions

View File

@ -632,7 +632,7 @@ instance.web_kanban.KanbanGroup = instance.web.Widget.extend({
'limit': self.view.limit,
'offset': self.dataset_offset += self.view.limit
}).then(function(records) {
self.view.dataset.ids = ids.concat(self.view.dataset.ids);
self.view.dataset.ids = ids.concat(self.dataset.ids);
self.do_add_records(records);
self.compute_cards_auto_height();
return records;