Fix for issue #676: title field not seem to be working with JSON profile

This commit is contained in:
Ruslan Kashinin 2023-04-09 18:01:41 +02:00
parent 1440dd924b
commit e2a88a2855
No known key found for this signature in database
GPG Key ID: 148F7456FFF0570B
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ class ConfigJson(object):
json_name = layout_name
if json_name in layoutjson:
children[parent + "." + str(order)].__setitem__(layout_name, layoutjson[json_name])
children[parent + "." + str(order)][layout_name] = layoutjson[json_name]
children[parent + "." + str(order)] = {
'type': 'Terminal',