Add space between buttons

This commit is contained in:
Christopher Cookman 2025-12-20 20:08:37 -07:00
parent 31800360d2
commit 717c4499ba

View file

@ -44,7 +44,7 @@
<thead>
<tr>
<% for (let c = 0; c < numCols; c++) { %>
<th class="text-left">
<th class="text-left p-2">
<h3><%= cols[c] || '' %></h3>
</th>
<% } %>
@ -57,7 +57,7 @@
const cell = row[c] || {};
const isBlank = Object.keys(cell).length === 0;
%>
<td class="text-left">
<td class="text-left p-2">
<% if (isBlank) { %>
<!-- blank space -->
<% } else {