mirror of
https://github.com/zadam/trilium.git
synced 2025-11-02 11:26:15 +01:00
Fix the action button tooltips for the "Existing tokens" table
This commit is contained in:
@@ -95,9 +95,9 @@ export default class EtapiOptions extends OptionsWidget {
|
|||||||
.append($("<td>").text(token.name))
|
.append($("<td>").text(token.name))
|
||||||
.append($("<td>").text(token.utcDateCreated))
|
.append($("<td>").text(token.utcDateCreated))
|
||||||
.append($("<td>").append(
|
.append($("<td>").append(
|
||||||
$('<span class="bx bx-pen token-table-button" title="${t("etapi.rename_token")}"></span>')
|
$(`<span class="bx bx-pen token-table-button" title="${t("etapi.rename_token")}"></span>`)
|
||||||
.on("click", () => this.renameToken(token.etapiTokenId, token.name)),
|
.on("click", () => this.renameToken(token.etapiTokenId, token.name)),
|
||||||
$('<span class="bx bx-trash token-table-button" title="${t("etapi.delete_token")}"></span>')
|
$(`<span class="bx bx-trash token-table-button" title="${t("etapi.delete_token")}"></span>`)
|
||||||
.on("click", () => this.deleteToken(token.etapiTokenId, token.name))
|
.on("click", () => this.deleteToken(token.etapiTokenId, token.name))
|
||||||
))
|
))
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user