[FIX] if no list limit is specified anywhere, default to 80 on listview initialization

lp bug: https://launchpad.net/bugs/923805 fixed

bzr revid: xmo@openerp.com-20120201131848-b0a0ity490s548c3
This commit is contained in:
Xavier Morel 2012-02-01 14:18:48 +01:00
parent c86ddaad57
commit 309dccbc1f
1 changed files with 1 additions and 1 deletions

View File

@ -97,7 +97,7 @@ openerp.web.ListView = openerp.web.View.extend( /** @lends openerp.web.ListView#
this._limit = (this.options.limit
|| this.defaults.limit
|| (this.widget_parent.action || {}).limit
|| null);
|| 80);
}
return this._limit;
},