dynamic machines

main
alex 2023-09-09 19:50:46 +02:00
parent 9a4f08bacd
commit a6defbb68c
1 changed files with 3 additions and 6 deletions

View File

@ -517,7 +517,6 @@ export default function GroupTasksViewModal({ isOpen }) {
groupTaskSteps[index].Status === groupTaskSteps[index].Status ===
Constants.GROUP_TASKS_STATUS.INPUT_REQUIRED ? ( Constants.GROUP_TASKS_STATUS.INPUT_REQUIRED ? (
<div id={`${currentGroupTask.current.Id}-scroll-${index}`}> <div id={`${currentGroupTask.current.Id}-scroll-${index}`}>
{console.log("inputrequ handl", groupTaskSteps[index])}
<InputRequiredHandler <InputRequiredHandler
webSocketContext={webSocketContext} webSocketContext={webSocketContext}
appContext={appContext} appContext={appContext}
@ -947,17 +946,15 @@ function InputRequiredHandler({
t={t} t={t}
notificationApi={notificationApi} notificationApi={notificationApi}
globalInput={groupTaskParameter} globalInput={groupTaskParameter}
onSelectChange={(value, notes) => { onSelectChange={(value, notes) =>
console.warn("onSelectChange", value, notes);
handleInputChange( handleInputChange(
"select", "select",
value, value,
currentGroupTask.Id, currentGroupTask.Id,
groupTaskParameter.parameterName, groupTaskParameter.parameterName,
notes notes
); )
}} }
/> />
</Form.Item> </Form.Item>
); );