This commit is contained in:
Benjamin Drieu 2021-12-01 16:22:16 +01:00 committed by Benjamin Drieu
parent c4245fe199
commit 5628b8efe5
1 changed files with 2 additions and 2 deletions

View File

@ -278,8 +278,8 @@ function createPrefWidgets ( noteBook, type, isActive )
else if ( prefEntry.key == 'type' )
{
[ { name: 'Icinga', value: 'Icinga server' },
{ name: 'Icinga2', value: 'Icinga2 server (without API)' },
{ name: 'Icinga2API', value: 'Icinga2 server (with API)' } ].forEach((item) => {
{ name: 'Icinga2', value: 'Icinga2 server (using Icingaweb2)' },
{ name: 'Icinga2API', value: 'Icinga2 server (using API)' } ].forEach((item) => {
this.prefWidgets[prefEntry.key].insert ( -1, item.name, item.value );
} );
}