mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-15 09:33:52 -07:00
Fixed airdate on episode modal
This commit is contained in:
parent
4a77197877
commit
e6447352f3
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ define(
|
||||||
Handlebars.registerHelper('EpisodeNumber', function () {
|
Handlebars.registerHelper('EpisodeNumber', function () {
|
||||||
|
|
||||||
if (this.series.seriesType === 'daily') {
|
if (this.series.seriesType === 'daily') {
|
||||||
return FormatHelpers.DateHelper(this.airDate);
|
return Moment(this.airDate).format('L');
|
||||||
}
|
}
|
||||||
|
|
||||||
else {
|
else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue