fix flow module adder

This commit is contained in:
Ruben Fiszel
2024-12-13 16:56:45 +01:00
parent 4f64b3e530
commit ddc2f0cff3
2 changed files with 4 additions and 4 deletions
@@ -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']
]
@@ -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'}