Browse Source

Fix ._super call.

pull/489/head
François Kawala 4 years ago
committed by François Kawala
parent
commit
c69bb276ca
  1. 2
      pos_reset_search/static/src/js/reset.js

2
pos_reset_search/static/src/js/reset.js

@ -5,7 +5,7 @@ odoo.define('product_click_search_reset', function (require) {
screens.ProductScreenWidget.include({
click_product: function (product) {
var self = this;
self.super(product);
self._super(product);
self.product_categories_widget.clear_search();
},
});

Loading…
Cancel
Save