mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update messages on pluginspage.js
This commit is contained in:
parent
f64c7b3818
commit
fd496448ac
4 changed files with 22 additions and 8 deletions
|
@ -2382,7 +2382,7 @@
|
|||
}
|
||||
},
|
||||
|
||||
renderGenres: function (elem, item, context) {
|
||||
renderGenres: function (elem, item, context, limit) {
|
||||
|
||||
var html = '';
|
||||
|
||||
|
@ -2390,6 +2390,10 @@
|
|||
|
||||
for (var i = 0, length = genres.length; i < length; i++) {
|
||||
|
||||
if (limit && i >= limit) {
|
||||
break;
|
||||
}
|
||||
|
||||
if (i > 0) {
|
||||
html += '<span> / </span>';
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue