Browse Source

HUE-905 [beeswax] Result page rows should not have new lines

Added nowrap on table cells
Enrico Berti 13 years ago
parent
commit
80c9000
1 changed files with 2 additions and 2 deletions
  1. 2 2
      apps/beeswax/src/beeswax/templates/watch_results.mako

+ 2 - 2
apps/beeswax/src/beeswax/templates/watch_results.mako

@@ -90,9 +90,9 @@ ${layout.menubar(section='query')}
 		              <tbody>
 		              <tbody>
 		                % for i, row in enumerate(results):
 		                % for i, row in enumerate(results):
 		                <tr>
 		                <tr>
-		                  <td>${start_row + i}</td>
+		                  <td style="white-space: nowrap">${start_row + i}</td>
 		                  % for item in row:
 		                  % for item in row:
-		                    <td>${ item }</td>
+		                    <td style="white-space: nowrap">${ item }</td>
 		                  % endfor
 		                  % endfor
 		                </tr>
 		                </tr>
 		                % endfor
 		                % endfor