mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 07:16:17 -04:00
Fix showing slice of output not working.
Fix output status message not being reset. Hide magic button when baking.
This commit is contained in:
parent
8190c7aac7
commit
28182713bf
4 changed files with 61 additions and 9 deletions
|
@ -205,6 +205,8 @@ class WorkerWaiter {
|
|||
setBakingStatus(bakingStatus) {
|
||||
this.app.baking = bakingStatus;
|
||||
this.manager.controls.toggleBakeButtonFunction(bakingStatus);
|
||||
|
||||
if (bakingStatus) this.manager.output.hideMagicButton();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -403,7 +405,7 @@ class WorkerWaiter {
|
|||
}
|
||||
}
|
||||
this.manager.output.updateOutputStatus("pending", inputData.inputNum);
|
||||
this.manager.output.updateOutputMessage(`Input ${inputData.inputNum} has not been baked yet.`);
|
||||
this.manager.output.updateOutputMessage(`Input ${inputData.inputNum} has not been baked yet.`, inputData.inputNum);
|
||||
|
||||
|
||||
if (inputData.override) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue