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

pull/1421/head
Adorian Doran 2025-03-13 04:30:42 +07:00
parent 6c6d20a830
commit 0e748fbce0
1 changed files with 1 additions and 1 deletions

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