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

Use unused variable as done in #971

This commit is contained in:
ferferga 2020-04-03 23:41:19 +02:00
parent fd93ce45f7
commit ceab439361
2 changed files with 2 additions and 2 deletions

View file

@ -309,7 +309,7 @@ define(["dialogHelper", "loading", "connectionManager", "require", "globalize",
fullName = idInfo.Name + " " + globalize.translate(idInfo.Type); fullName = idInfo.Name + " " + globalize.translate(idInfo.Type);
} }
var idLabel = globalize.translate("LabelDynamicExternalId", idInfo.Name); var idLabel = globalize.translate("LabelDynamicExternalId", fullName);
html += '<input is="emby-input" class="txtLookupId" data-providerkey="' + idInfo.Key + '" id="' + id + '" label="' + idLabel + '"/>'; html += '<input is="emby-input" class="txtLookupId" data-providerkey="' + idInfo.Key + '" id="' + id + '" label="' + idLabel + '"/>';

View file

@ -470,7 +470,7 @@ define(['itemHelper', 'dom', 'layoutManager', 'dialogHelper', 'datetime', 'loadi
fullName = idInfo.Name + " " + globalize.translate(idInfo.Type); fullName = idInfo.Name + " " + globalize.translate(idInfo.Type);
} }
var labelText = globalize.translate('LabelDynamicExternalId', idInfo.Name); var labelText = globalize.translate('LabelDynamicExternalId', fullName);
html += '<div class="inputContainer">'; html += '<div class="inputContainer">';
html += '<div class="flex align-items-center">'; html += '<div class="flex align-items-center">';