Your IP : 216.73.216.43


Current Path : /home/rtorresani/www/vendor/magento/module-customer/view/adminhtml/web/js/grid/filters/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-customer/view/adminhtml/web/js/grid/filters/chips.js

/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

define([
    'Magento_Ui/js/grid/filters/chips'
], function (Chips) {
    'use strict';

    return Chips.extend({

        /**
         * Clear previous filters while initializing element to prevent filters sharing between customers
         *
         * @param {Object} elem
         */
        initElement: function (elem) {
            this.clear();
            this._super(elem);
        }
    });
});