Fixed unique keys bug
This commit is contained in:
parent
1e54c17574
commit
641bcb4a58
2 changed files with 4 additions and 1 deletions
3
src/backend/.gitignore
vendored
3
src/backend/.gitignore
vendored
|
|
@ -131,3 +131,6 @@ dmypy.json
|
|||
|
||||
# Pyre type checker
|
||||
.pyre/
|
||||
|
||||
# Custom Components
|
||||
langflow/components
|
||||
|
|
|
|||
|
|
@ -137,7 +137,7 @@ export default function ExtraSidebar() {
|
|||
Object.keys(dataFilter[d]).length > 0 ? (
|
||||
<DisclosureComponent
|
||||
openDisc={search.length == 0 ? false : true}
|
||||
key={nodeNames[d]}
|
||||
key={i}
|
||||
button={{
|
||||
title: nodeNames[d] ?? nodeNames.unknown,
|
||||
Icon: nodeIconsLucide[d] ?? nodeIconsLucide.unknown,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue