We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 435611d commit da36861Copy full SHA for da36861
app/code/Magento/Weee/view/adminhtml/web/js/regions-tax-select.js
@@ -10,16 +10,16 @@ define([
10
11
return Select.extend({
12
defaults: {
13
- imports: {
14
- filter: '${ $.parentName }.country:value',
15
- disableSelect: '${ $.parentName }.country:value'
+ filterBy: {
+ field: 'country',
+ target: '${ $.parentName }.country:value'
16
}
17
},
18
19
/** @inheritdoc */
20
- initialize: function () {
21
- return this._super()
22
- .disableSelect();
+ filter: function () {
+ this._super();
+ this.disableSelect();
23
24
25
/**
0 commit comments