Skip to content

Commit e4d5083

Browse files
Migration tool - not all input has comments
1 parent c913c94 commit e4d5083

File tree

1 file changed

+1
-1
lines changed
  • dev/tools/Magento/Tools/Migration/System/Configuration

1 file changed

+1
-1
lines changed

dev/tools/Magento/Tools/Migration/System/Configuration/Mapper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function __construct(
3737
public function transform(array $config)
3838
{
3939
$output = [];
40-
$output['comment'] = $config['comment'];
40+
$output['comment'] = isset($config['comment']) ? $config['comment'] : '';
4141

4242
$tabsConfig = isset($config['tabs']) ? $config['tabs'] : [];
4343
$sectionsConfig = isset($config['sections']) ? $config['sections'] : [];

0 commit comments

Comments
 (0)