Index: content.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/cck/content.js,v
retrieving revision 1.1.2.2
diff -u -r1.1.2.2 content.js
--- content.js	12 Sep 2008 23:56:03 -0000	1.1.2.2
+++ content.js	6 Oct 2008 11:12:23 -0000
@@ -15,7 +15,7 @@
 
   // 'Field type' select updates its 'Widget' select.
   $('#content-field-overview .content-field-type-select', context).each(function() {
-    this.targetSelect = $('.content-widget-type-select', $(this).parents('tr'));
+    this.targetSelect = $('.content-widget-type-select', $(this).parents('tr').eq(0));
 
     $(this).change(function() {
       var selectedFieldType = this.options[this.selectedIndex].value;
@@ -30,8 +30,8 @@
 
   // 'Existing field' select updates its 'Widget' select and 'Label' textfield.
   $('#content-field-overview .content-field-select', context).each(function() {
-    this.targetSelect = $('.content-widget-type-select', $(this).parents('tr'));
-    this.targetTextfield = $('.content-label-textfield', $(this).parents('tr'));
+    this.targetSelect = $('.content-widget-type-select', $(this).parents('tr').eq(0));
+    this.targetTextfield = $('.content-label-textfield', $(this).parents('tr').eq(0));
 
     $(this).change(function(e, updateText) {
       var updateText = (typeof(updateText) == 'undefined') ? true : updateText;

