Skip to content

Commit cda5838

Browse files
committed
Fixing CVR City field
1 parent f96df4d commit cda5838

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/os2forms_nemid/src/Plugin/WebformElement/ServiceplatformenCvrElementBase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public function handleElementPrepopulate(array &$element, FormStateInterface &$f
5050
$spCvrData['company_address'] = $spCvrData['company_street'] . ' ' . $spCvrData['company_house_nr'] . ' ' . $spCvrData['company_floor'];
5151

5252
// Making composite field, city.
53-
$spCrpData['company_city'] = $spCvrData['company_zipcode'] . ' ' . $spCvrData['company_city'];
53+
$spCvrData['company_city'] = $spCvrData['company_zipcode'] . ' ' . $spCvrData['company_city'];
5454

5555
$form_state->set('servicePlatformenCvrData', $spCvrData);
5656
}

0 commit comments

Comments
 (0)