Skip to content

Commit 4da3e7d

Browse files
committed
use series date instead of actual DB date in GPU graph tooltip
1 parent ea8fa00 commit 4da3e7d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/app/src/components/inference/utils/tooltipUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ export const generateGPUGraphTooltipContent = (config: TooltipConfig): string =>
235235
<div style="background: var(--popover); border: 1px solid var(--border); border-radius: 8px; padding: 12px; box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1); user-select: ${isPinned ? 'text' : 'none'};">
236236
${isPinned ? '<div style="color: var(--muted-foreground); font-size: 10px; margin-bottom: 6px; font-style: italic;">Click elsewhere to dismiss</div>' : ''}
237237
<div style="color: var(--muted-foreground); font-size: 11px; margin-bottom: 4px;">
238-
<strong>Date:</strong> ${d.actualDate ?? d.date}
238+
<strong>Date:</strong> ${d.date}
239239
</div>
240240
<div style="color: var(--muted-foreground); font-size: 11px; margin-bottom: 4px;">
241241
<strong>GPU Config:</strong> ${hardwareConfig[d.hwKey] ? getDisplayLabel(hardwareConfig[d.hwKey]) : d.hwKey}

0 commit comments

Comments
 (0)