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 39a4e90 commit 84b64d4Copy full SHA for 84b64d4
src/frontend/wwwroot/task/task.js
@@ -217,7 +217,8 @@
217
fetchTaskStages(data[0]);
218
219
sessionStorage.setItem("apiTask", JSON.stringify(data[0]));
220
- const isHumanClarificationRequestNull = data?.[0]?.human_clarification_request === null
+ //const isHumanClarificationRequestNull = data?.[0]?.human_clarification_request === null
221
+ const isHumanClarificationResponseNotNull = data?.[0]?.human_clarification_response !== null;
222
const taskMessageTextareaElement =document.getElementById("taskMessageTextarea");
223
const taskMessageAddButton = document.getElementById("taskMessageAddButton");
224
const textInputContainer = document.getElementsByClassName("text-input-container");
0 commit comments