Skip to content

Commit

Permalink
feat: add audio/*
Browse files Browse the repository at this point in the history
  • Loading branch information
EiffelFly committed Feb 7, 2024
1 parent 616e462 commit 35bfb03
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions packages/toolkit/src/view/pipeline-builder/FlowControl.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,18 @@ export const FlowControl = (props: FlowControlProps) => {
];
break;
}
case "video/*": {
input[key] = "Please put your video base64 encoded string";
break;
}
case "array:video/*": {
input[key] = [
"Please put your first video base64 encoded string",
"Please put your second video base64 encoded string",
"...",
];
break;
}
case "boolean": {
input[key] = true;
break;
Expand Down

0 comments on commit 35bfb03

Please sign in to comment.