Merge pull request #1141 from Tecnativa/12.0-fix-issue-1139-web_widget_color

web_widget_color: Fix issue #1139
pull/1144/head
Pedro M. Baeza 2018-12-26 14:19:28 +01:00 committed by GitHub
commit 02c00e2875
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ odoo.define('web.web_widget_color', function(require) {
_renderEdit: function() { _renderEdit: function() {
this.$input = this.$el.find('input'); 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); field_registry.add('color', FieldColor);