Skip to content

Commit

Permalink
fix flow module adder
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenfiszel committed Dec 13, 2024
1 parent 393b838 commit a7ef9e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@
}
const allToplevelNodes: [string, string][] = [
['For Loop', 'forloop'],
['While Loop', 'whileloop'],
['For loop', 'forloop'],
['While loop', 'whileloop'],
['Branch to one', 'branchone'],
['Branch to all', 'branchall']
]
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/lib/components/flows/pickers/TopLevelNode.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@
{:else if label === 'End Flow'}
<Square size={14} />
End Flow
{:else if label === 'For Loop'}
{:else if label === 'For loop'}
<Repeat size={14} />
For Loop
{:else if label === 'While Loop'}
{:else if label === 'While loop'}
<Repeat size={14} />
While Loop
{:else if label === 'Branch to one'}
Expand Down

0 comments on commit a7ef9e9

Please sign in to comment.