09793009c7ec55f6d44ff76a6d30dc236a0d29f7
kent
  Mon Feb 11 15:31:26 2019 -0800
Fixing an unwanted word-wrap that was making table format off in browse/files.

diff --git src/hg/lib/tablesTables.c src/hg/lib/tablesTables.c
index 2e5a950..d3052594 100644
--- src/hg/lib/tablesTables.c
+++ src/hg/lib/tablesTables.c
@@ -523,31 +523,31 @@
     jsInlineF(
 	"$(function () {\n"
 	"  $('.cdwFSCheckBox').click(function() {\n"
 	"    this.nextSibling.nextSibling.click();\n"
 	"  });\n"
 	"});\n");
     }
 
 // start right column, if there are two columns
 if (visibleFacetList)
     printf("<div class='col-xs-6 col-sm-8 col-md-8 col-lg-9 col-xl-9'>\n");
 else
     printf("<div class='col-12'>\n");
     
 printf("  <div>\n");
-printf("    <table class=\"table table-striped table-bordered table-sm\">\n");
+printf("    <table class=\"table table-striped table-bordered table-sm text-nowrap\">\n");
 
 /* Draw optional filters cells ahead of column labels*/
 printf("<thead>\n");
 if (withFilters)
     showTableFilterControlRow(table, cart, varPrefix, maxLenField, suggestHash);
 showTableSortingLabelRow(table, cart, varPrefix, returnUrl);
 printf("</thead>\n");
 
 printf("<tbody>\n");
 showTableDataRows(table, pageSize, maxLenField, tagOutputWrappers, wrapperContext);
 printf("</tbody>\n");
 printf("</table>\n");
 printf("</div>");
 
 if (largerContext != NULL)