We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b784958 commit e743534Copy full SHA for e743534
ui/frontend/reducers/output/execute.ts
@@ -115,6 +115,7 @@ const slice = createSlice({
115
.addCase(performExecute.fulfilled, (state, action) => {
116
const { stdout, stderr } = action.payload;
117
Object.assign(state, { stdout, stderr });
118
+ delete state.error;
119
state.requestsInProgress -= 1;
120
})
121
.addCase(performExecute.rejected, (state, action) => {
@@ -130,6 +131,7 @@ const slice = createSlice({
130
131
state.requestsInProgress = 1; // Only tracking one request
132
state.stdout = '';
133
state.stderr = '';
134
135
}),
136
)
137
.addCase(
0 commit comments