mirror of
https://github.com/tiqi-group/pydase.git
synced 2026-01-21 11:22:25 +01:00
replaces undefined name by full_access_path in ListComponent item
This commit is contained in:
@@ -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}
|
||||||
|
|||||||
Reference in New Issue
Block a user