Update share-links-dropdown.component.ts

This commit is contained in:
shamoon 2023-10-31 15:44:53 -07:00
parent 55e799b833
commit 03523244ef

View File

@ -84,7 +84,7 @@ export class ShareLinksDropdownComponent implements OnInit {
}
getDaysRemaining(link: PaperlessShareLink): string {
const days: number = Math.ceil(
const days: number = Math.round(
(Date.parse(link.expiration) - Date.now()) / (1000 * 60 * 60 * 24)
)
return days === 1 ? $localize`1 day` : $localize`${days} days`