style/options/ETAPI: update the icon of the edit token button

This commit is contained in:
Adorian Doran 2025-03-13 04:30:42 +02:00
parent 6c6d20a830
commit 0e748fbce0

View File

@ -118,7 +118,7 @@ export default class EtapiOptions extends OptionsWidget {
.append($("<td>").text(formatDateTime(token.utcDateCreated)))
.append(
$("<td>").append(
$(`<span class="bx bx-pen token-table-button icon-action" title="${t("etapi.rename_token")}"></span>`).on("click", () => this.renameToken(token.etapiTokenId, token.name)),
$(`<span class="bx bx-edit-alt token-table-button icon-action" title="${t("etapi.rename_token")}"></span>`).on("click", () => this.renameToken(token.etapiTokenId, token.name)),
$(`<span class="bx bx-trash token-table-button icon-action" title="${t("etapi.delete_token")}"></span>`).on("click", () => this.deleteToken(token.etapiTokenId, token.name))
)
)