Skip to content

Commit

Permalink
Include changes in paramDef
Browse files Browse the repository at this point in the history
Signed-off-by: srikant <[email protected]>
  • Loading branch information
srikant-ch5 committed Dec 6, 2024
1 parent 54294aa commit a0c3e38
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,22 +139,13 @@ class TitleEditor extends Component {
iconDescription={propertiesTitleEditButtonLabel}
hasIconOnly
/>);
const obj = {
"id": "link_for_number",
"data": {
"something": "option data"
},
"propertyId": {
"name": "number"
}
};
const helpButton = this.props.help
? (<span className="properties-heading-icon">
<Tooltip
className="properties-title-editor-btn help"
data-id="help"
tip={helpButtonLabel}
link={obj}
tip={this.props.help?.data?.description?.label}
link={this.props.help?.data?.description?.link ? this.props.help?.data?.description?.link : null}
tooltipLinkHandler={this.props.controller.getHandlers().tooltipLinkHandler}
direction="bottom"
showToolTipOnClick
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,19 @@
],
"help": {
"data": {
"url": "randomUrl"
"url": "randomUrl",
"description": {
"label": "Readonly Description",
"link": {
"id": "link_for_heading",
"data": {
"something": "option data"
},
"propertyId": {
"name": "number"
}
}
}
}
}
},
Expand Down

0 comments on commit a0c3e38

Please sign in to comment.