Skip to content

Commit

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

* remove console

(cherry picked from commit f6d550b)
  • Loading branch information
codemaster08240328 authored and sadpandajoe committed Apr 6, 2022
1 parent 01b27d6 commit 56c7eea
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 56c7eea

Please sign in to comment.