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 6f17a8b commit 98aa4c5Copy full SHA for 98aa4c5
1 file changed
app/components/Package/TrendsChart.vue
@@ -1614,9 +1614,9 @@ const chartConfig = computed<VueUiXyConfig>(() => {
1614
1615
const hasMultipleItems = items.length > 1
1616
1617
- // Format date for compare page (multi-package mode, not in modal)
+ // Format date for multiple series datasets
1618
let formattedDate = ''
1619
- if (!props.inModal && hasMultipleItems && absoluteIndex !== undefined) {
+ if (hasMultipleItems && absoluteIndex !== undefined) {
1620
const index = Number(absoluteIndex)
1621
if (Number.isInteger(index) && index >= 0 && index < chartData.value.dates.length) {
1622
const timestamp = chartData.value.dates[index]
0 commit comments