style(platform): apply backend and frontend formatting

Co-authored-by: Nicholas Tindle <ntindle@users.noreply.github.com>
This commit is contained in:
claude[bot]
2026-01-08 04:44:48 +00:00
parent ff8c696096
commit 896506261b
2 changed files with 9 additions and 7 deletions

View File

@@ -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

View File

@@ -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>