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:
parent
fd93ce45f7
commit
ceab439361
2 changed files with 2 additions and 2 deletions
|
@ -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 + '"/>';
|
||||||
|
|
||||||
|
|
|
@ -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">';
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue