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 a881e2e commit 844181cCopy full SHA for 844181c
src/plot.js
@@ -129,7 +129,8 @@ export function plot(options = {}) {
129
.attr("y", 20)
130
.attr("dy", "-1em")
131
.attr("text-anchor", "end")
132
- .text("⚠️")
+ .attr("font-family", "initial") // fix emoji rendering in Chrome
133
+ .text("\u26a0\ufe0f") // emoji variation selector
134
.append("title")
135
.text(`${w.toLocaleString("en-US")} warning${w === 1 ? "" : "s"}. Please check the console.`);
136
}
0 commit comments