mirror of
https://github.com/gchq/CyberChef
synced 2025-01-08 10:38:46 +00:00
Fix file slice not always being displayed
This commit is contained in:
parent
f72749304d
commit
3cffd9334f
1 changed files with 1 additions and 1 deletions
|
@ -1092,7 +1092,7 @@ class OutputWaiter {
|
||||||
|
|
||||||
outputText.classList.remove("blur");
|
outputText.classList.remove("blur");
|
||||||
showFileOverlay.style.display = "block";
|
showFileOverlay.style.display = "block";
|
||||||
outputText.value = str;
|
outputText.value = Utils.printable(str);
|
||||||
|
|
||||||
|
|
||||||
outputText.style.display = "block";
|
outputText.style.display = "block";
|
||||||
|
|
Loading…
Reference in a new issue