This commit is contained in:
rilgamon 2021-04-04 14:38:25 +02:00
parent 5b6f7969c3
commit efc36079ba
1 changed files with 1 additions and 2 deletions

View File

@ -120,7 +120,6 @@ function lib:AddConfigEntry(options, ...)
elseif(input[2] == 'group') then
menu['inline'] = input[7]
menu['handler'] = input[6]
menu['childGroups'] = input[8]
menu['args'] = {
['description'] = {
['name'] = input[4],
@ -138,7 +137,7 @@ function lib:AddConfigMenu(options, parentName, order, handler, more)
['name'] = parentName,
['type'] = 'group',
['handler'] = handler or self['handler'],
['childGroups'] =' tab',
['childGroups'] = 'tab',
['order'] = order or 1,
['args'] = {}
}