Use workflow inputSchema to render boolean, number, and enum fields in code/logic function steps (#20439)

<img width="415" height="772" alt="Screenshot 2026-05-11 at 4 44 08 PM"
src="https://github.com/user-attachments/assets/32dbdd3c-e60b-4c43-90bc-18be05f22dcf"
/>
<img width="414" height="371" alt="Screenshot 2026-05-11 at 4 48 24 PM"
src="https://github.com/user-attachments/assets/83be062c-7ed3-4953-98bb-e4290865040b"
/>
This commit is contained in:
Abdul Rahman
2026-05-11 19:51:08 +05:30
committed by GitHub
parent 9813467cee
commit ed75fc8a25
14 changed files with 341 additions and 11 deletions
@@ -46,6 +46,10 @@ const convertProperty = (jsonSchema: InputJsonSchema): InputSchemaProperty => {
);
}
if (jsonSchema.multiline === true) {
property.multiline = true;
}
return property;
};