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 367578f commit f9dbfbdCopy full SHA for f9dbfbd
src/Pages/Home/JwtDecoder/JwtDecoder.cshtml
@@ -1,4 +1,4 @@
1
-@page "~/jwt-decoder"
+@page "~/jwt-decoder"
2
@model IdentityServerHost.Pages.Home.JwtDecoder
3
4
<div class="jwt-decoder-page">
@@ -335,7 +335,7 @@
335
let debounceTimeout;
336
jwtInput.on('input', function() {
337
clearTimeout(debounceTimeout);
338
- debounceTimeout = setTimeout(async () => await parseJwt.call(this), 300); // 300ms debounce
+ debounceTimeout = setTimeout(async () => await parseJwt.call(this), 100); // 100ms debounce
339
});
340
341
@if (Model.View?.Token != null)
0 commit comments