2
0

🐛 (editor) Fix empty typebot name not editable

This commit is contained in:
Baptiste Arnaud
2022-11-21 12:00:12 +01:00
parent 451ffbcacf
commit 2489318fa5
2 changed files with 8 additions and 8 deletions

View File

@ -14,7 +14,7 @@ export const ItemNodeContent = ({ item, indices, isMouseOver }: Props) => {
case ItemType.BUTTON:
return (
<ButtonsItemNode
key={item.content}
key={`${item.id}-${item.content}`}
item={item}
isMouseOver={isMouseOver}
indices={indices}