diff --git a/core/modules/node/content_types.js b/core/modules/node/content_types.js
index eed93f01c9..e001a0a817 100644
--- a/core/modules/node/content_types.js
+++ b/core/modules/node/content_types.js
@@ -20,13 +20,11 @@
       var $context = $(context);
       // Provide the vertical tab summaries.
       $context.find('#edit-submission').drupalSetSummary(function (context) {
-        var vals = [];
-        vals.push(Drupal.checkPlain($(context).find('#edit-title-label').val()) || Drupal.t('Requires a title'));
-        return vals.join(', ');
+        return Drupal.checkPlain($(context).find('#edit-title-label').val()) || Drupal.t('Requires a title');
       });
       $context.find('#edit-workflow').drupalSetSummary(function (context) {
         var vals = [];
-        $(context).find('input[name^="options"]:checked').parent().each(function () {
+        $(context).find('input[name^="options"]:checked').next('label').each(function () {
           vals.push(Drupal.checkPlain($(this).text()));
         });
         if (!$(context).find('#edit-options-status').is(':checked')) {
