From f676c831904c7abc5b8d81f41d2366563b27fe95 Mon Sep 17 00:00:00 2001 From: Katherine Zaoral Date: Mon, 26 Mar 2018 09:19:10 -0300 Subject: [PATCH] [FIX] web_dashboard_tile clean group_by from tile view Be able to open a title without getting context group_by garbage from the title view. --- web_dashboard_tile/models/tile_tile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web_dashboard_tile/models/tile_tile.py b/web_dashboard_tile/models/tile_tile.py index 59936e7f..7a0c3695 100644 --- a/web_dashboard_tile/models/tile_tile.py +++ b/web_dashboard_tile/models/tile_tile.py @@ -259,7 +259,7 @@ class TileTile(models.Model): 'view_id': [False], 'res_model': self.model_id.model, 'type': 'ir.actions.act_window', - 'context': self.env.context, + 'context': dict(self.env.context, group_by=False), 'nodestroy': True, 'target': 'current', 'domain': self.domain,