mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Remove unused context variable
This commit is contained in:
parent
b11f4fa4b1
commit
ce182d286b
1 changed files with 2 additions and 3 deletions
|
@ -1080,7 +1080,7 @@ function renderDetails(page, item, apiClient, context) {
|
|||
renderLinks(page, item);
|
||||
}
|
||||
|
||||
renderTags(page, item, context);
|
||||
renderTags(page, item);
|
||||
renderSeriesAirTime(page, item);
|
||||
}
|
||||
|
||||
|
@ -1299,7 +1299,7 @@ function renderSeriesAirTime(page, item) {
|
|||
}
|
||||
}
|
||||
|
||||
function renderTags(page, item, context) {
|
||||
function renderTags(page, item) {
|
||||
const itemTags = page.querySelector('.itemTags');
|
||||
const tagElements = [];
|
||||
let tags = item.Tags || [];
|
||||
|
@ -1310,7 +1310,6 @@ function renderTags(page, item, context) {
|
|||
|
||||
tags.forEach(tag => {
|
||||
const href = appRouter.getRouteUrl('tag', {
|
||||
context,
|
||||
tag,
|
||||
serverId: item.ServerId
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue