diff --git a/sources/tmgmt_config/src/Plugin/tmgmt/Source/ConfigSource.php b/sources/tmgmt_config/src/Plugin/tmgmt/Source/ConfigSource.php index f86552a..29c1cb2 100644 --- a/sources/tmgmt_config/src/Plugin/tmgmt/Source/ConfigSource.php +++ b/sources/tmgmt_config/src/Plugin/tmgmt/Source/ConfigSource.php @@ -190,13 +190,7 @@ class ConfigSource extends SourcePluginBase implements ContainerFactoryPluginInt $config_id = str_replace('.', '__', $config_id); $data[$config_id] = $this->extractTranslatables($schema, $config_data); } - // If there is only one, we simplify the data and return it. - if (count($data) == 1) { - return reset($data); - } - else { - return $data; - } + return $data; } /**