Skip to content
Snippets Groups Projects
Commit 145690d8 authored by Géry Debongnie's avatar Géry Debongnie
Browse files

[FIX] display problem in graph view in some cases

Recently, the graph view was changed to prevent changing groupbys
for active custom filters.  Unfortunately, I did not take into account
the fact that pivot table can be drawn in part when expanding rows.

The "frozen" parameter was then undefined and caused display problems,
this patch should fix the issue.
parent 8fc7cf74
No related branches found
No related tags found
No related merge requests found
......@@ -389,7 +389,7 @@ openerp.web_graph.Graph = openerp.web.Widget.extend({
var rows = self.build_rows(header.children);
var doc_fragment = $(document.createDocumentFragment());
rows.map(function (row) {
doc_fragment.append(self.draw_row(row));
doc_fragment.append(self.draw_row(row, 0));
});
self.$row_clicked.after(doc_fragment);
} else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment