Add a non-breaking-space for empty cells

This commit is contained in:
foo 2017-10-15 17:08:52 +01:00
parent 7d313a6baf
commit 21c558950c

View File

@ -55,7 +55,7 @@
<% for(char c : row) {
csv += "" + c + ',';
%>
<td class="cell"><%= c %></td>
<td class="cell"><%= c != Character.UNASSIGNED ? c : "&nbsp" %></td>
<% } %>
</tr>
<%