Volume relative numbering (#1421)
* Order issues by volume first is series detail * Display volume along with chapter in chapters tab * Move volume title to tooltip in card-item * Consolidate card-item tooltip into one variable. * Version as per comments
This commit is contained in:
parent
f22e8e88d7
commit
c328f684a0
3 changed files with 17 additions and 18 deletions
|
@ -485,8 +485,7 @@ public class SeriesService : ISeriesService
|
|||
if (v.Number == 0) return c;
|
||||
c.VolumeTitle = v.Name;
|
||||
return c;
|
||||
})).ToList();
|
||||
|
||||
}).OrderBy(c => float.Parse(c.Number), new ChapterSortComparer()));
|
||||
|
||||
foreach (var chapter in chapters)
|
||||
{
|
||||
|
@ -505,8 +504,7 @@ public class SeriesService : ISeriesService
|
|||
} else
|
||||
{
|
||||
retChapters = chapters
|
||||
.Where(ShouldIncludeChapter)
|
||||
.OrderBy(c => float.Parse(c.Number), new ChapterSortComparer());
|
||||
.Where(ShouldIncludeChapter);
|
||||
}
|
||||
|
||||
var storylineChapters = volumes
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue