3
0
Fork 0

Merge pull request #1514 from sunflowerit/10.0-web_m2x_options_1isalsotrue

[FIX] if nocreate=1 then also see that as true
10.0
Daniel Reis 2023-12-27 15:14:30 +00:00 committed by GitHub
commit b82d0ccca9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ odoo.define('web_m2x_options.web_m2x_options', function (require) {
var is_string = typeof option === 'string'
var is_bool = typeof option === 'boolean'
if (is_string) {
return option === 'true' || option === 'True'
return option === 'true' || option === 'True' || option === '1'
} else if (is_bool) {
return option
}