$OpenBSD: patch-webform_components_inc,v 1.2 2009/11/07 08:35:38 espie Exp $
--- webform_components.inc.orig	Fri Nov  6 01:25:43 2009
+++ webform_components.inc	Sat Nov  7 09:34:41 2009
@@ -187,7 +187,7 @@ function theme_webform_components_form($form) {
 
       // Add each component to a table row.
       $row_data = array(
-        $indents . filter_xss($component['name']),
+        $indents . filter_xss(empty($component['name']) ? $component['form_key'] : $component['name']),
         t($component['type']),
         ($component['value'] == '') ? '-' : $component['value'],
         drupal_render($form['components'][$cid]['mandatory']),
@@ -296,7 +296,6 @@ function webform_component_edit_form(&$form_state, $no
     '#default_value' => $component['name'],
     '#title' => t('Label'),
     '#description' => t('This is used as a descriptive label when displaying this form element.'),
-    '#required' => TRUE,
     '#weight' => -2,
     '#maxlength' => 255,
   );
