Skip to content

Commit

Permalink
fix: weight tooltip issue (#19397)
Browse files Browse the repository at this point in the history
* fix: weight tooltip issue

* remove console
  • Loading branch information
codemaster08240328 committed Apr 6, 2022
1 parent 4680580 commit f6d550b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ function setTooltipContent(o) {
label={`${t('Longitude and Latitude')}: `}
value={`${o.coordinate[0]}, ${o.coordinate[1]}`}
/>
<TooltipRow label={`${t('Weight')}: `} value={`${o.object.weight}`} />
<TooltipRow label={`${t('Weight')}: `} value={`${o.object.cellWeight}`} />
</div>
);
}
Expand Down

0 comments on commit f6d550b

Please sign in to comment.