fix: Disable bid text wrapping
All checks were successful
Build Docker / Build Image (push) Successful in 1m8s

This commit is contained in:
2025-06-26 14:40:29 +10:00
parent 84a48a8580
commit eead0d03cc

View File

@@ -307,7 +307,7 @@ def bidDomains(bids,domains, sortbyDomains=False):
html += "<tr>" html += "<tr>"
html += f"<td><a class='text-decoration-none' style='color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));' href='/auction/{domain['name']}'>{renderDomain(domain['name'])}</a></td>" html += f"<td><a class='text-decoration-none' style='color: var(--bs-table-color-state, var(--bs-table-color-type, var(--bs-table-color)));' href='/auction/{domain['name']}'>{renderDomain(domain['name'])}</a></td>"
html += f"<td>{domain['state']}</td>" html += f"<td>{domain['state']}</td>"
html += f"<td>{bidDisplay}</td>" html += f"<td style='white-space: nowrap;'>{bidDisplay}</td>"
html += f"<td class='hide-mobile'>{domain['height']:,}</td>" html += f"<td class='hide-mobile'>{domain['height']:,}</td>"
html += "</tr>" html += "</tr>"
else: else: