We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 828868f commit 6afc4bfCopy full SHA for 6afc4bf
src/extension/index.js
@@ -14,11 +14,10 @@ function setupShareJwtButton() {
14
copyTokenLink(value.token, value.publicKey);
15
}
16
17
- shareJwtTextElement.firstChild.textContent =
18
- strings.extension.jwtIoUrlCopied;
+ const shareJwtTextNode = shareJwtTextElement.firstChild;
+ shareJwtTextNode.textContent = strings.extension.jwtIoUrlCopied;
19
setTimeout(() => {
20
21
- strings.extension.shareThisJwt;
+ shareJwtTextNode.textContent = strings.extension.shareThisJwt;
22
}, 2000);
23
});
24
0 commit comments