Skip to content

Commit

Permalink
fix: eslint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ktx-abhay committed Oct 22, 2024
1 parent f86e3cc commit dee3f8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/component/tooltip/TooltipHTMLContent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ class TooltipHTMLContent {
makeStyleCoord(styleCoord, this._zr, this._container, zrX, zrY);

if (styleCoord[0] != null && styleCoord[1] != null) {
const style: any = this.el ? (this.el.style || {}) : {}
const style: any = this.el ? (this.el.style || {}) : {};
const transforms = assembleTransform(styleCoord[0], styleCoord[1]) as string[][];
each(transforms, (transform) => {
style[transform[0] as any] = transform[1];
Expand Down

0 comments on commit dee3f8e

Please sign in to comment.