mirror of
https://github.com/valitydev/wazuh-kibana-app.git
synced 2024-11-06 18:05:20 +00:00
Removed extensions from Settings > Configuration editor
This commit is contained in:
parent
16cdf17d96
commit
d590891245
@ -75,7 +75,14 @@ export class SettingsController {
|
||||
|
||||
// Tab names
|
||||
this.tabNames = TabNames;
|
||||
|
||||
this.configuration = wazuhConfig.getConfig();
|
||||
for (const key in this.configuration) {
|
||||
if (key.includes('extension')) {
|
||||
delete this.configuration[key];
|
||||
}
|
||||
}
|
||||
|
||||
this.configurationTypes = [];
|
||||
for (const key in this.configuration) {
|
||||
this.configurationTypes[key] = typeof this.configuration[key];
|
||||
|
Loading…
Reference in New Issue
Block a user