You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* improvement(response-copilot): make it use builder mode over editor mode to prevent json formatting issues
* change placeholder text
* fix conversion between builder and editor mode
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/workflow-block/components/sub-block/components/dropdown.tsx
+92-16Lines changed: 92 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -44,10 +44,20 @@ export function Dropdown({
44
44
45
45
constinputRef=useRef<HTMLInputElement>(null)
46
46
constdropdownRef=useRef<HTMLDivElement>(null)
47
+
constpreviousModeRef=useRef<string|null>(null)
47
48
48
49
// For response dataMode conversion - get builderData and data sub-blocks
Copy file name to clipboardExpand all lines: apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/workflow-block/components/sub-block/components/starter/input-format.tsx
0 commit comments