mirror of
https://github.com/tiqi-group/pydase.git
synced 2025-06-05 13:10:41 +02:00
replaces undefined name by full_access_path in ListComponent item
This commit is contained in:
parent
2b8e25f5f1
commit
9ae6895858
@ -26,10 +26,10 @@ export const ListComponent = React.memo((props: ListComponentProps) => {
|
|||||||
<div>Render count: {renderCount.current}</div>
|
<div>Render count: {renderCount.current}</div>
|
||||||
)}
|
)}
|
||||||
<DocStringComponent docString={docString} />
|
<DocStringComponent docString={docString} />
|
||||||
{value.map((item, index) => {
|
{value.map((item) => {
|
||||||
return (
|
return (
|
||||||
<GenericComponent
|
<GenericComponent
|
||||||
key={`${name}[${index}]`}
|
key={item.full_access_path}
|
||||||
attribute={item}
|
attribute={item}
|
||||||
isInstantUpdate={isInstantUpdate}
|
isInstantUpdate={isInstantUpdate}
|
||||||
addNotification={addNotification}
|
addNotification={addNotification}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user