1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

fixed code smells

This commit is contained in:
vitorsemeano 2020-11-08 20:56:08 +00:00
parent fc9f747db2
commit 5c58d1472f
3 changed files with 65 additions and 59 deletions

View file

@ -20,8 +20,8 @@ function getThemeStylesheetInfo(id) {
let theme;
if (id) {
theme = themes.find(theme => {
return theme.id === id;
theme = themes.find(currentTheme => {
return currentTheme.id === id;
});
}