Index: sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/class-customizations.php
===================================================================
--- sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/class-customizations.php	(revision 5272)
+++ sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/class-customizations.php	(working copy)
@@ -108,7 +108,7 @@
 			switch ( $hook_suffix ) {
 				case 'post.php':
 					wp_enqueue_style( 'plugin-admin-post-css', plugins_url( 'css/edit-form.css', Plugin_Directory\PLUGIN_FILE ), array( 'edit' ), 4 );
-					wp_enqueue_script( 'plugin-admin-post-js', plugins_url( 'js/edit-form.js', Plugin_Directory\PLUGIN_FILE ), array( 'wp-util', 'wp-lists' ), 1 );
+					wp_enqueue_script( 'plugin-admin-post-js', plugins_url( 'js/edit-form.js', Plugin_Directory\PLUGIN_FILE ), array( 'wp-util', 'wp-lists' ), 2 );
 					wp_localize_script( 'plugin-admin-post-js', 'pluginDirectory', array(
 						'removeCommitterAYS' => __( 'Are you sure you want to remove this committer?', 'wporg-plugins' ),
 					) );
Index: sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/js/edit-form.js
===================================================================
--- sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/js/edit-form.js	(revision 5272)
+++ sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/js/edit-form.js	(working copy)
@@ -22,6 +22,7 @@
 			_.each( $( '#post-body' ).find( '.comments-box' ), PluginEdit.loadComments );
 
 			$( '#add-new-comment' ).on( 'click', 'a.button', PluginEdit.prepareCommentForm );
+			$( '#the-comment-list' ).on( 'click', '.reply a', PluginEdit.addCommentTypeField );
 
 			$( '#add-committer-toggle' ).on( 'click', PluginEdit.toggleCommitterForm );
 
@@ -107,14 +108,20 @@
 
 			window.commentReply && commentReply.addcomment( $( '#post_ID' ).val() );
 
-			// Add a field with the custom comment type.
-			$( '#replyrow' ).find( '.comment-reply' ).append( $( '<input/>' ).attr({
-				type: 'hidden',
-				name: 'comment_type',
-				value: $( '.comments-box' ).data( 'comment-type' )
-			}) );
+			PluginEdit.addCommentTypeField( event );
 		},
 
+		addCommentTypeField: function( event ) {
+			if ( 0 === $( '#replyrow' ).find( '.comment-reply input[name="comment_type"]' ).length ) {
+				// Add a field with the custom comment type.
+				$( '#replyrow' ).find( '.comment-reply' ).append( $( '<input/>' ).attr({
+					type: 'hidden',
+					name: 'comment_type',
+					value: $( '.comments-box' ).data( 'comment-type' )
+				}) );
+			}
+		},
+
 		toggleCommitterForm: function( event ) {
 			var $form = $( '#add-committer' );
 
