Skip to content

Commit

Permalink
fix broken props
Browse files Browse the repository at this point in the history
  • Loading branch information
chriscollins3456 committed Jul 31, 2024
1 parent 0120791 commit 9c2b336
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,12 @@ export const PropertiesTab = () => {
propertyTableColumns.push({
title: '',
width: '10%',
render: (propertyRow: PropertyRow) => <EditColumn propertyRow={propertyRow} />,
render: (propertyRow: PropertyRow) => (
<EditColumn
structuredProperty={propertyRow.structuredProperty}
values={propertyRow.values?.map((v) => v.value) || []}
/>
),
} as any);
}

Expand Down

0 comments on commit 9c2b336

Please sign in to comment.