diff --git a/app/views/workflows/_form.html.erb b/app/views/workflows/_form.html.erb
index 32639753c..429ccb4e6 100644
--- a/app/views/workflows/_form.html.erb
+++ b/app/views/workflows/_form.html.erb
@@ -40,7 +40,7 @@
     
     <% for new_status in @statuses -%>
     <% checked = (old_status == new_status) || (transition_counts[[old_status, new_status]] > 0) %>
-    
+     | 
       <%= transition_tag transition_counts[[old_status, new_status]], old_status, new_status, name %>
      | 
     <% end -%>
diff --git a/public/javascripts/application.js b/public/javascripts/application.js
index c9b7d943d..f7f2aa2d0 100644
--- a/public/javascripts/application.js
+++ b/public/javascripts/application.js
@@ -1039,15 +1039,15 @@ function setupWikiTableSortableHeader() {
 }
 
 $(function () {
-    $('[title]').tooltip({
-        show: {
-          delay: 400
-        },
-        position: {
-          my: "center bottom-5",
-          at: "center top"
-        }
-    });
+  $("[title]:not(.no-tooltip)").tooltip({
+    show: {
+      delay: 400
+    },
+    position: {
+      my: "center bottom-5",
+      at: "center top"
+    }
+  });
 });
 
 function inlineAutoComplete(element) {