mirror of
https://github.com/Significant-Gravitas/AutoGPT.git
synced 2026-01-09 15:17:59 -05:00
style(platform): apply backend and frontend formatting
Co-authored-by: Nicholas Tindle <ntindle@users.noreply.github.com>
This commit is contained in:
@@ -554,11 +554,13 @@ async def validate_and_construct_node_execution_input(
|
||||
nodes_input_masks or {},
|
||||
)
|
||||
|
||||
starting_nodes_input, nodes_to_skip = await _construct_starting_node_execution_input(
|
||||
graph=graph,
|
||||
user_id=user_id,
|
||||
graph_inputs=graph_inputs,
|
||||
nodes_input_masks=nodes_input_masks,
|
||||
starting_nodes_input, nodes_to_skip = (
|
||||
await _construct_starting_node_execution_input(
|
||||
graph=graph,
|
||||
user_id=user_id,
|
||||
graph_inputs=graph_inputs,
|
||||
nodes_input_masks=nodes_input_masks,
|
||||
)
|
||||
)
|
||||
|
||||
return graph, starting_nodes_input, nodes_input_masks, nodes_to_skip
|
||||
|
||||
@@ -79,7 +79,7 @@ export const CredentialsField = (props: FieldProps) => {
|
||||
|
||||
{/* Optional credentials toggle */}
|
||||
{nodeId && !formContext?.readOnly && (
|
||||
<div className="flex items-center gap-2 mt-1">
|
||||
<div className="mt-1 flex items-center gap-2">
|
||||
<Switch
|
||||
id={`credentials-optional-${nodeId}`}
|
||||
checked={credentialsOptional}
|
||||
@@ -89,7 +89,7 @@ export const CredentialsField = (props: FieldProps) => {
|
||||
/>
|
||||
<label
|
||||
htmlFor={`credentials-optional-${nodeId}`}
|
||||
className="text-xs text-gray-500 cursor-pointer"
|
||||
className="cursor-pointer text-xs text-gray-500"
|
||||
>
|
||||
Optional - skip block if not configured
|
||||
</label>
|
||||
|
||||
Reference in New Issue
Block a user