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 5310)
+++ sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/class-customizations.php	(working copy)
@@ -109,7 +109,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' ), 2 );
+					wp_enqueue_script( 'plugin-admin-post-js', plugins_url( 'js/edit-form.js', Plugin_Directory\PLUGIN_FILE ), array( 'wp-util', 'wp-lists' ), 3 );
 					wp_localize_script( 'plugin-admin-post-js', 'pluginDirectory', array(
 						'removeCommitterAYS' => __( 'Are you sure you want to remove this committer?', 'wporg-plugins' ),
 					) );
@@ -511,6 +511,14 @@
 			}
 		}
 
+		// Inherit comment type from parent comment.
+		if ( ! $comment_data['comment_type'] ) {
+			$parent = get_comment( $comment_parent );
+			if ( $parent && $parent->comment_post_ID == $comment_post_ID ) {
+				$comment_data['comment_type'] = $parent->comment_type;
+			}
+		}
+
 		$comment_id = wp_new_comment( $comment_data );
 		$comment    = get_comment( $comment_id );
 		if ( ! $comment ) {
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 5310)
+++ 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 );
 
@@ -111,14 +112,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' );
 
