[FIX] display all non-automatic actions

bzr revid: xmo@openerp.com-20111011102046-6jgki6sykefd0fy8
This commit is contained in:
Xavier Morel 2011-10-11 12:20:46 +02:00
commit bc77c16cdc
1 changed files with 1 additions and 1 deletions

View File

@ -290,7 +290,7 @@ openerp.web_dashboard.ConfigOverview = openerp.web.View.extend({
this._super(parent);
this.dataset = new openerp.web.DataSetSearch(
this, 'ir.actions.todo');
this.dataset.domain = [['type', '=', 'manual']];
this.dataset.domain = [['type', '!=', 'automatic']];
},
start: function () {
this._super();