We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8b0ce2 commit a9e656eCopy full SHA for a9e656e
src/herbie/ErrorPlot.tsx
@@ -530,8 +530,8 @@ function ErrorPlot() {
530
const parent = circle.parentNode;
531
circles.push({circle, parent, orig, expId})
532
533
- // Done using circle ordinal & id info, reset textContent so onHover of points gives useful info for user
534
- t.textContent = orig.map((v : ordinal, i :number) => `${vars[i]}: ${herbiejs.displayNumber(ordinals.ordinalToFloat(v))}`).join('\n');
+ // Done using circle ordinal & id info, reset textContent so onHover of points doesn't bother the user
+ t.textContent = ''
535
});
536
let brushedPoints: ordinal[][] = [];
537
0 commit comments