DIfferent objects for webix.js and webix_debug.js

Hi.
I’ve noticed that using ‘webix_debug.js’ is much more different than ‘webix.js’.
Example for some filter code.
This works fine with webix_debug.js:
refresh: function (master, node, value) {
node.component = master._settings.id;
But the same _settings object is called ‘s’: master.s.id while using webix.js and I have this:
Uncaught TypeError: Cannot read property ‘id’ of undefined
Is it supposed to be so?

All names that have an underscore at start are private, they must not be used directly ( they will be compressed in webix.js )

In case of “._settings”, you need to use “.config” which is the public alias for the same data structure.

I see!
Thank you, Maksim.