We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a8b24e commit 631a016Copy full SHA for 631a016
ui/src/components/executions/outputs/Wrapper.vue
@@ -215,7 +215,7 @@
215
const taskRunList = [...execution.value.taskRunList];
216
return taskRunList.find((e) => e.taskId === filter);
217
};
218
- const onDebugExpression = (expression) => {
+ const onDebugExpression = (expression: string) => {
219
const taskRun = selectedTask();
220
221
if (!taskRun) return;
@@ -236,7 +236,7 @@
236
debugExpression.value = response.data.result;
237
238
// Parsing failed, therefore, copy raw result
239
- if (response.status === 200)
+ if (response.status === 200 && response.data.result)
240
selected.value.push(response.data.result);
241
}
242
0 commit comments