Your IP : 216.73.217.95


Current Path : /home/rtorresani/www/vendor/magento/module-customer/view/adminhtml/web/js/form/element/
Upload File :
Current File : //home/rtorresani/www/vendor/magento/module-customer/view/adminhtml/web/js/form/element/region.js

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

define([
    'Magento_Ui/js/form/element/region'
], function (Region) {
    'use strict';

    return Region.extend({
        defaults: {
            regionScope: 'data.region'
        },

        /**
         * Set region to customer address form
         *
         * @param {String} value - region
         */
        setDifferedFromDefault: function (value) {
            this._super();

            if (parseFloat(value)) {
                this.source.set(this.regionScope, this.indexedOptions[value].label);
            }
        }
    });
});