[FIX] wall widget: fixed variable not refreshed

bzr revid: tde@openerp.com-20120405072712-048lpk3is1huw7yt
This commit is contained in:
Thibault Delavallée 2012-04-05 09:27:12 +02:00
parent a967386ec4
commit a3435487cf
1 changed files with 1 additions and 1 deletions

View File

@ -626,7 +626,7 @@ openerp.mail = function(session) {
this.params.search['domain'] = _.union(this.params.domain, domain || []);
this.params.search['context'] = _.extend(this.params.context, context || {});
this.display_show_more = true;
this.sorted_comments = {'models': {}};
this.comments_structure = {'root_ids': [], 'new_root_ids': [], 'msgs': {}, 'tree_struct': {}, 'model_to_root_ids': {}};
this.$element.find('div.oe_mail_wall_threads').empty();
return this.fetch_comments(limit, offset);
},