mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
[FIX] Allow set web_tree_many2one_clickable.default as True
This commit is contained in:
committed by
Pedro M. Baeza
parent
faa6a8b2d2
commit
c6a7f600bc
@@ -48,7 +48,7 @@ openerp.web_tree_many2one_clickable = function(instance, local)
|
|||||||
.first()
|
.first()
|
||||||
.then(function(param) {
|
.then(function(param) {
|
||||||
if (param) {
|
if (param) {
|
||||||
self.use_many2one_clickable = (param.value == 'true');
|
self.use_many2one_clickable = (param.value.toLowerCase() == 'true');
|
||||||
}
|
}
|
||||||
self.ir_option_clickable_loaded.resolve();
|
self.ir_option_clickable_loaded.resolve();
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user