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

fix external id fields

This commit is contained in:
Luke Pulverenti 2016-06-11 12:34:00 -04:00
parent 1204c0b459
commit efecb676cb
5 changed files with 134 additions and 154 deletions

View file

@ -510,14 +510,18 @@
var labelText = Globalize.translate('LabelDynamicExternalId').replace('{0}', idInfo.Name);
html += '<div class="inputContainer">';
html += '<div style="display: flex; align-items: center;">';
var value = providerIds[idInfo.Key] || '';
html += '<div style="flex-grow:1;">';
html += '<input is="emby-input" class="txtExternalId" value="' + value + '" data-providerkey="' + idInfo.Key + '" data-formatstring="' + formatString + '" data-buttonclass="' + buttonId + '" id="' + id + '" label="' + labelText + '"/>';
html += '</div>';
if (formatString) {
html += '<a class="clearLink ' + buttonId + '" href="#" target="_blank" data-role="none" style="float: none; width: 1.75em"><button type="button" is="paper-icon-button-light"><iron-icon icon="open-in-browser"></iron-icon></button></a>';
}
html += '</div>';
html += '</div>';
}