Browse Source

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 6 years ago
committed by GitHub
parent
commit
02c00e2875
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      web_widget_color/static/src/js/widget.js

2
web_widget_color/static/src/js/widget.js

@ -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);

Loading…
Cancel
Save