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