Skip to content

Commit

Permalink
fix: add support for CustomSelection
Browse files Browse the repository at this point in the history
  • Loading branch information
vilde-barth-adsk committed Nov 8, 2023
1 parent c5827f3 commit 713d67e
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,10 @@ function DynamoInputComponent({
onChange={(ev) => setValue(input.id, ev.target.value)}
/>
);
} else if (input.type === "DSDropDownBase") {
} else if (
input.type === "DSDropDownBase" ||
input.type === "CustomSelection"
) {
return (
<forma-select-native
// @ts-ignore
Expand Down

0 comments on commit 713d67e

Please sign in to comment.