feat: Update actions page for mobile
All checks were successful
Build Docker / Build Image (push) Successful in 1m3s

This commit is contained in:
2025-06-26 14:05:43 +10:00
parent a3560c2615
commit 7494b77f32
4 changed files with 5 additions and 5 deletions

View File

@@ -305,7 +305,7 @@ def bidDomains(bids,domains, sortbyDomains=False):
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>{bidDisplay}</td>"
html += f"<td>{domain['height']:,}</td>"
html += f"<td class='hide-mobile'>{domain['height']:,}</td>"
html += "</tr>"
else:
for domain in domains:
@@ -321,7 +321,7 @@ def bidDomains(bids,domains, sortbyDomains=False):
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>{bidDisplay}</td>"
html += f"<td>{domain['height']:,}</td>"
html += f"<td class='hide-mobile'>{domain['height']:,}</td>"
html += "</tr>"
return html