Merge pull request #1140 from Tecnativa/11.0-fix-issue-1139-web_widget_color

web_widget_color: Fix issue #1139
This commit is contained in:
Pedro M. Baeza
2018-12-26 14:19:09 +01:00
committed by GitHub

View File

@@ -16,7 +16,7 @@ odoo.define('web.web_widget_color', function(require) {
_renderEdit: function() {
this.$input = this.$el.find('input');
this.jscolor = new jscolor(this.$input[0], {hash:true});
this.jscolor = new jscolor(this.$input[0], {hash:true, zIndex:2000});
},
});
field_registry.add('color', FieldColor);