mirror of
https://github.com/gchq/CyberChef
synced 2025-12-20 18:23:47 +00:00
Fix stepping.
Move stepping logic into App. Change toggleBakeButtonFunction to use a str instead of booleans. Tidy up handleLoaderMessage in InputWaiter.
This commit is contained in:
@@ -233,7 +233,9 @@ class OutputWaiter {
|
||||
if (!this.outputExists(inputNum)) return;
|
||||
this.outputs[inputNum].progress = progress;
|
||||
|
||||
this.manager.tabs.updateOutputTabProgress(inputNum, progress, total);
|
||||
if (progress !== false) {
|
||||
this.manager.tabs.updateOutputTabProgress(inputNum, progress, total);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user