[FIX] Allow set web_tree_many2one_clickable.default as True

pull/1438/head
Antonio Espinosa 2015-06-24 12:06:02 +02:00 committed by Simone
parent 5e4b6bde91
commit 4a960adc51
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ openerp.web_tree_many2one_clickable = function(instance, local)
.first()
.then(function(param) {
if (param) {
self.use_many2one_clickable = (param.value == 'true');
self.use_many2one_clickable = (param.value.toLowerCase() == 'true');
}
self.ir_option_clickable_loaded.resolve();
});