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

fixed lock icon on edit screen

This commit is contained in:
Luke Pulverenti 2013-08-07 16:44:31 -04:00
parent a02324d91f
commit dd90e80e03

View file

@ -18,7 +18,7 @@
var htmlName = "<div class='" + cssClass + "'>"; var htmlName = "<div class='" + cssClass + "'>";
if (item.DontFetchMeta) { if (item.EnableInternetProviders === false) {
htmlName += '<img src="css/images/editor/lock.png" />'; htmlName += '<img src="css/images/editor/lock.png" />';
} }
@ -47,7 +47,8 @@
ApiClient.getItems(Dashboard.getCurrentUserId(), { ApiClient.getItems(Dashboard.getCurrentUserId(), {
ParentId: node.attr("id"), ParentId: node.attr("id"),
SortBy: 'SortName' SortBy: 'SortName',
Fields: 'MetadataSettings'
}).done(function (result) { }).done(function (result) {