mirror of
https://github.com/fooflington/wordsearch.git
synced 2025-01-22 09:19:55 +00:00
Add a non-breaking-space for empty cells
This commit is contained in:
parent
7d313a6baf
commit
21c558950c
@ -55,7 +55,7 @@
|
||||
<% for(char c : row) {
|
||||
csv += "" + c + ',';
|
||||
%>
|
||||
<td class="cell"><%= c %></td>
|
||||
<td class="cell"><%= c != Character.UNASSIGNED ? c : " " %></td>
|
||||
<% } %>
|
||||
</tr>
|
||||
<%
|
||||
|
Loading…
x
Reference in New Issue
Block a user