Skip to content

Commit

Permalink
fix(connect-explorer): pass description for nested parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
martykan committed Feb 5, 2025
1 parent 1aa34bf commit fc44b51
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/connect-explorer/src/components/ParamsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,11 @@ const SingleParam = ({
{hasDescendants && (
<div style={{ marginLeft: 30 }}>
{/* eslint-disable-next-line @typescript-eslint/no-use-before-define */}
<ParamsTable schema={value} topLevelSchema={topLevelSchema} />
<ParamsTable
schema={value}
topLevelSchema={topLevelSchema}
descriptions={descriptions}
/>
</div>
)}
</>
Expand Down

0 comments on commit fc44b51

Please sign in to comment.