mirror of
https://github.com/Readarr/Readarr.git
synced 2026-09-23 03:35:03 -04:00
Fixed: Year on add series will be shown in grey if its not part of the series title
This commit is contained in:
1 parent
6c9ea60382
commit
32e6b7db48
2 files changed
+6
-1
No files matched your search
@@ -44,6 +44,11 @@
|
||||
margin-left: 15px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.year {
|
||||
font-style : italic;
|
||||
color : #aaaaaa;
|
||||
}
|
||||
}
|
||||
|
||||
.new-series-overview {
|
||||
|
||||
@@ -69,6 +69,6 @@ define(
|
||||
return this.title;
|
||||
}
|
||||
|
||||
return new Handlebars.SafeString('{0} <em>({1})</em>'.format(this.title, this.year));
|
||||
return new Handlebars.SafeString('{0} <span class="year">({1})</span>'.format(this.title, this.year));
|
||||
});
|
||||
});
|
||||
Reference in new issue
Block a user