Replace remaining i element cases with em (#3381)

This commit is contained in:
Dominik
2025-04-05 17:05:29 +02:00
committed by GitHub
5 changed files with 5 additions and 5 deletions

View File

@@ -53,7 +53,7 @@ function showSuggestDomains(value) {
function createButton(hostname) {
// Purposefully omit 'btn' class to save space on padding
return $('<button type="button" class="btn-link btn-block text-right">')
.append($("<i>").text(hostname))
.append($("<em>").text(hostname))
.on("click", function () {
hideSuggestDomains();
newDomainEl.val(hostname);