diff --git a/app/destination_imports/destination_imports.php b/app/destination_imports/destination_imports.php index b3d0e65dce..504da49d50 100644 --- a/app/destination_imports/destination_imports.php +++ b/app/destination_imports/destination_imports.php @@ -758,8 +758,12 @@ foreach($schema as $row) { echo " \n"; foreach($row['fields'] as $field) { - if (substr($field, -5) != '_uuid') { - echo " \n"; + $selected = ''; + if ($field == $line_field) { + $selected = "selected='selected'"; + } + if ($field !== 'domain_uuid') { + echo " \n"; } } echo " \n"; @@ -1022,4 +1026,4 @@ //include the footer require_once "resources/footer.php"; -?> \ No newline at end of file +?>