Disabling configuration for component

In order to remove the configuration for the specific component head over to /shared/config_ui.lua and find Config.UI.Interfaces variable. We will present in our example disabling "color" component.

Disabling

Find "use" key and set the value to false:

Config.UI.Interfaces['color'] = {
    name = 'color',
    label = 'Color',
    icon = 'fas fa-fill',
    use = false,
}

Now component is disabled for configuration.

Last updated