Browse Source

Use toLowerCase() instead another comparator

pull/152/head
Antonio Espinosa 9 years ago
parent
commit
0d7c5b07c2
  1. 2
      web_tree_many2one_clickable/static/src/js/web_tree_many2one_clickable.js

2
web_tree_many2one_clickable/static/src/js/web_tree_many2one_clickable.js

@ -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') or (param.value == 'true'));
self.use_many2one_clickable = (param.value.toLowerCase() == 'true');
}
self.ir_option_clickable_loaded.resolve();
});

Loading…
Cancel
Save