Skip to content

Commit d4e198e

Browse files
committed
chore: patch and unique key
1 parent 64ee995 commit d4e198e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

packages/ui-components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@node-core/ui-components",
3-
"version": "1.6.2",
3+
"version": "1.6.3",
44
"type": "module",
55
"exports": {
66
"./*": {

packages/ui-components/src/Containers/FunctionSignature/index.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ const FunctionSignature: FC<FunctionSignatureProps> = ({ title, items }) => {
4343
</Signature>
4444
{returnTypes.length > 0 && (
4545
<Signature>
46-
{returnTypes.map((param, i) => renderSignature(param, i))}
46+
{returnTypes.map((param, i) =>
47+
renderSignature(param, attributes.length + i)
48+
)}
4749
</Signature>
4850
)}
4951
</>

0 commit comments

Comments
 (0)