diff --git a/application/forms.class.inc.php b/application/forms.class.inc.php
index 8ae199749a..00982dfbe7 100644
--- a/application/forms.class.inc.php
+++ b/application/forms.class.inc.php
@@ -227,9 +227,12 @@ class DesignerForm
'raw-value' => $oField->GetRawValue(),
];
if (is_null($aRow['label'])) {
- $sReturn .= $this->StartRow($sFieldId, $aPropertyFieldData).'
'.$aRow['value'];
+ $sReturn .= $this->StartRow($sFieldId, $aPropertyFieldData).
+ ' | '.$aRow['value'];
} else {
- $sReturn .= $this->StartRow($sFieldId, $aPropertyFieldData).' | '.$aRow['label'].' | '.$aRow['value'];
+ $sReturn .= $this->StartRow($sFieldId, $aPropertyFieldData).
+ ' | '.$aRow['label'].
+ ' | '.$aRow['value'];
}
if (!($oField instanceof DesignerFormSelectorField) && !($oField instanceof DesignerMultipleSubFormField)) {
$sReturn .= $sValidationFields;
|