File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -346,6 +346,7 @@ function getTagVersions(tag: string): VersionDisplay[] {
346346 <NuxtTime
347347 v-if =" row.primaryVersion.time"
348348 :datetime =" row.primaryVersion.time"
349+ :title =" row.primaryVersion.time"
349350 year =" numeric"
350351 month =" short"
351352 day =" numeric"
@@ -395,6 +396,7 @@ function getTagVersions(tag: string): VersionDisplay[] {
395396 <NuxtTime
396397 v-if =" v.time"
397398 :datetime =" v.time"
399+ :title =" v.time"
398400 class =" text-[10px] text-fg-subtle"
399401 year =" numeric"
400402 month =" short"
@@ -476,6 +478,7 @@ function getTagVersions(tag: string): VersionDisplay[] {
476478 <NuxtTime
477479 v-if =" row.primaryVersion.time"
478480 :datetime =" row.primaryVersion.time"
481+ :title =" row.primaryVersion.time"
479482 class =" text-[10px] text-fg-subtle"
480483 year =" numeric"
481484 month =" short"
@@ -586,6 +589,7 @@ function getTagVersions(tag: string): VersionDisplay[] {
586589 <NuxtTime
587590 v-if =" v.time"
588591 :datetime =" v.time"
592+ :title =" v.time"
589593 class =" text-[10px] text-fg-subtle"
590594 year =" numeric"
591595 month =" short"
Original file line number Diff line number Diff line change @@ -577,7 +577,11 @@ defineOgImageComponent('Package', {
577577 <div v-if =" pkg.time?.modified" class =" space-y-1" >
578578 <dt class =" text-xs text-fg-subtle uppercase tracking-wider sm:text-right" >Updated</dt >
579579 <dd class =" font-mono text-sm text-fg sm:text-right" >
580- <NuxtTime :datetime =" pkg.time.modified" date-style =" medium" />
580+ <NuxtTime
581+ :datetime =" pkg.time.modified"
582+ :title =" pkg.time.modified"
583+ date-style =" medium"
584+ />
581585 </dd >
582586 </div >
583587 </dl >
You can’t perform that action at this time.
0 commit comments