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 5fe6a89 commit 1bee78dCopy full SHA for 1bee78d
packages/devextreme-react/src/core/options-manager.ts
@@ -99,14 +99,14 @@ class OptionsManager {
99
100
this.isUpdating = false;
101
this.instance.off('optionChanged', optionChangedHandler);
102
+ this.currentConfig = config;
103
104
changedOptions.forEach(([name, value]) => {
105
const currentPropValue = config.options[name];
106
if (config.options.hasOwnProperty(name) && currentPropValue !== value) {
107
this.setValue(name, currentPropValue);
108
}
109
});
- this.currentConfig = config;
110
this.instance.endUpdate();
111
112
0 commit comments