We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aeb5b4e commit 062445aCopy full SHA for 062445a
docs/DATAMODEL.md
@@ -536,6 +536,7 @@ export interface TreeNodeDetails {
536
status?: 'info' | 'success' | 'warning' | 'error';
537
icon?: MynahIcons;
538
label?: string;
539
+ description?: string; // Markdown tooltip
540
}
541
542
export interface SourceLink {
@@ -1348,7 +1349,8 @@ mynahUI.addChatItem(tabId, {
1348
1349
'src/devfile.yaml': {
1350
status: 'error',
1351
label: "Change rejected",
- icon: MynahIcons.REVERT
1352
+ icon: MynahIcons.REVERT,
1353
+ description: 'Markdown tooltip to show'
1354
1355
1356
},
0 commit comments