Skip to content

Commit

Permalink
Add summary field to Object in AutoFieldLoader (#1629)
Browse files Browse the repository at this point in the history
* Add summary field to Object in AutoFieldLoader

- fixes summary field with pydantic-forms 1.1.1

* Add changeset
  • Loading branch information
tjeerddie authored Dec 17, 2024
1 parent c7eaf69 commit 2cab3b2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/wise-files-study.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@orchestrator-ui/orchestrator-ui-components': patch
---

Add summary field to Object field type in AutoFieldLoader
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ export function autoFieldFunction(
switch (format) {
case 'optGroup':
return OptGroupField;
case 'summary':
return SummaryField;
}
break;
case String:
Expand Down

0 comments on commit 2cab3b2

Please sign in to comment.