mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-27 12:33:00 +02:00
nzb titles in manual search will wrap
This commit is contained in:
@@ -17,7 +17,7 @@ namespace NzbDrone.Core.Parser.Model
|
||||
|
||||
public bool IsRecentEpisode()
|
||||
{
|
||||
return Episodes.Any(e => e.AirDateUtc >= DateTime.Today.AddDays(-14));
|
||||
return Episodes.Any(e => e.AirDateUtc >= DateTime.UtcNow.Date.AddDays(-14));
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
|
@@ -57,3 +57,8 @@ td.episode-status-cell, td.quality-cell {
|
||||
.clickable();
|
||||
}
|
||||
}
|
||||
|
||||
.nzb-title-cell {
|
||||
max-width: 600px;
|
||||
word-wrap: break-word;
|
||||
}
|
@@ -29,7 +29,7 @@ define(
|
||||
name : 'title',
|
||||
label : 'Title',
|
||||
sortable: true,
|
||||
cell : Backgrid.StringCell
|
||||
cell : Backgrid.StringCell.extend({ className: 'nzb-title-cell' })
|
||||
},
|
||||
{
|
||||
name : 'indexer',
|
||||
|
Reference in New Issue
Block a user