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 7810d7c commit 071e8f8Copy full SHA for 071e8f8
src/components/MemoryPreview/index.tsx
@@ -71,7 +71,15 @@ const MemoryCell = ({
71
<TooltipProvider>
72
<Tooltip delayDuration={0}>
73
<TooltipTrigger asChild>
74
- <span>{numeralSystem ? "??" : "???"}</span>
+ <span
75
+ className="font-mono"
76
+ dangerouslySetInnerHTML={{
77
+ __html: numeralSystem
78
+ ? "?⁠?⁠"
79
+ : "?⁠?⁠?⁠",
80
+ // This is a fix for ?? : ??? because ? adds a break after which causes the whole line to break into two lines
81
+ }}
82
+ />
83
</TooltipTrigger>
84
85
<TooltipPortal>
0 commit comments