Skip to content

Commit

Permalink
Fix #79979
Browse files Browse the repository at this point in the history
  • Loading branch information
sandy081 committed Aug 28, 2019
1 parent 5b991cf commit a77ea7f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ export class TooltipWidget extends ExtensionWidget {
if (!this.extension) {
return '';
}
if (this.tooltipAction.tooltip) {
return this.tooltipAction.tooltip;
if (this.tooltipAction.label) {
return this.tooltipAction.label;
}
return this.recommendationWidget.tooltip;
}
Expand Down

0 comments on commit a77ea7f

Please sign in to comment.