2
0
mirror of https://github.com/gchq/CyberChef synced 2025-12-15 07:43:22 +00:00

Fixed replace input with output button

This commit is contained in:
n1474335
2023-01-13 14:14:57 +00:00
parent 17c349973d
commit c1394e299a

View File

@@ -1305,9 +1305,9 @@ class OutputWaiter {
const activeData = await this.getDishBuffer(this.getOutputDish(activeTab)); const activeData = await this.getDishBuffer(this.getOutputDish(activeTab));
if (this.outputExists(activeTab)) { if (this.outputExists(activeTab)) {
this.manager.input.set({ this.manager.input.set(activeTab, {
inputNum: activeTab, type: "userinput",
input: activeData buffer: activeData
}); });
} }