Skip to content

Commit

Permalink
fix(bar): fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
scottdickerson committed Oct 28, 2019
1 parent b6f519b commit 0d04b04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/components/essentials/tooltip-bar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ export class TooltipBar extends Tooltip {
let defaultTooltip;
if (e.detail.multidata) {
// multi tooltip
defaultTooltip = this.getMultilineTooltipHTML(e.detail.multidata)
defaultTooltip = this.getMultilineTooltipHTML(e.detail.multidata);
} else {
defaultTooltip = this.getTooltipHTML(e.detail.hoveredElement.datum())
defaultTooltip = this.getTooltipHTML(e.detail.hoveredElement.datum());
}

// if there is a provided tooltip HTML function call it and pass the defaultTooltip
Expand Down

0 comments on commit 0d04b04

Please sign in to comment.