mirror of
https://github.com/gchq/CyberChef
synced 2025-01-15 14:03:54 +00:00
Fixed progress bug
This commit is contained in:
parent
dd6eae52ef
commit
9e679f411c
1 changed files with 1 additions and 1 deletions
|
@ -1217,7 +1217,7 @@ class OutputWaiter {
|
||||||
}
|
}
|
||||||
this.manager.tabs.updateTabHeader(inputNum, tabStr, "output");
|
this.manager.tabs.updateTabHeader(inputNum, tabStr, "output");
|
||||||
if (this.manager.worker.recipeConfig !== undefined) {
|
if (this.manager.worker.recipeConfig !== undefined) {
|
||||||
this.manager.tabs.updateTabProgress(inputNum, this.outputs[inputNum].progress, this.manager.worker.recipeConfig.length, "output");
|
this.manager.tabs.updateTabProgress(inputNum, this.outputs[inputNum]?.progress, this.manager.worker.recipeConfig.length, "output");
|
||||||
}
|
}
|
||||||
|
|
||||||
const tabItem = this.manager.tabs.getTabItem(inputNum, "output");
|
const tabItem = this.manager.tabs.getTabItem(inputNum, "output");
|
||||||
|
|
Loading…
Reference in a new issue