mirror of
https://github.com/OCA/OCB.git
synced 2026-04-23 19:14:53 -06:00
1
OLD 7.0 2015 03 27
Xavier Brochard edited this page 2021-10-29 23:51:56 +02:00
Conflict:
diff --cc addons/web_kanban/static/src/js/kanban.js
index c45c59c,60e7f1e..0000000
--- a/addons/web_kanban/static/src/js/kanban.js
+++ b/addons/web_kanban/static/src/js/kanban.js
@@@ -647,10 -649,12 +647,18 @@@ instance.web_kanban.KanbanGroup = insta
},
do_show_more: function(evt) {
var self = this;
++<<<<<<< HEAD
++=======
+ var ids = self.view.dataset.ids.slice(0);
++>>>>>>> odoo/7.0
return this.dataset.read_slice(this.view.fields_keys.concat(['__last_update']), {
'limit': self.view.limit,
'offset': self.dataset_offset += self.view.limit
}).then(function(records) {
++<<<<<<< HEAD
++=======
+ self.view.dataset.ids = ids.concat(_.difference(self.dataset.ids, ids));
++>>>>>>> odoo/7.0
self.do_add_records(records);
self.compute_cards_auto_height();
self.view.postprocess_m2m_tags();
resolved by
git checkout --theirs addons/web_kanban/static/src/js/kanban.js
The conflict was introduced in github.com/OCA/OCB@747ea8fa53, but github.com/odoo/odoo@2a0c018043 corrects this behavior.
Committed as github.com/OCA/OCB@a6cc3f9 by @hbrunn