1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00

Improve tooltip for Next Airing on series Overview

This commit is contained in:
Bogdan
2024-07-17 19:10:04 +03:00
committed by Mark McDowall
parent 1662521d40
commit b7dfb8999d
2 changed files with 4 additions and 1 deletions
@@ -236,7 +236,9 @@ function SeriesIndexOverviewInfo(props: SeriesIndexOverviewInfoProps) {
<div className={styles.infos}>
{!!nextAiring && (
<SeriesIndexOverviewInfoRow
title={formatDateTime(nextAiring, longDateFormat, timeFormat)}
title={translate('NextAiringDate', {
date: formatDateTime(nextAiring, longDateFormat, timeFormat),
})}
iconName={icons.SCHEDULED}
label={getRelativeDate({
date: nextAiring,