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 9c47faf commit 6e6ffb2Copy full SHA for 6e6ffb2
src/editor/secret-length-tooltip.js
@@ -23,7 +23,9 @@ export function minSecretLengthCheck(event) {
23
console.log(utf8tohex(secretInput.value));
24
25
if(inputBits < algBits) {
26
- secretInput._tippy.show();
+ if(!secretInput._tippy.state.visible) {
27
+ secretInput._tippy.show();
28
+ }
29
} else {
30
secretInput._tippy.hide();
31
}
0 commit comments