mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update wizard user page
This commit is contained in:
parent
b4c8cb07c9
commit
d80f8205eb
2 changed files with 3 additions and 3 deletions
|
@ -7,7 +7,7 @@
|
||||||
$('#selectVideoDecoder', page).val(config.HardwareAccelerationType);
|
$('#selectVideoDecoder', page).val(config.HardwareAccelerationType);
|
||||||
$('#selectThreadCount', page).val(config.EncodingThreadCount);
|
$('#selectThreadCount', page).val(config.EncodingThreadCount);
|
||||||
$('#txtDownMixAudioBoost', page).val(config.DownMixAudioBoost);
|
$('#txtDownMixAudioBoost', page).val(config.DownMixAudioBoost);
|
||||||
$('.txtEncoderPath', page).val(config.EncoderAppPath || '');
|
page.querySelector('.txtEncoderPath').value = config.EncoderAppPath || '';
|
||||||
$('#txtTranscodingTempPath', page).val(config.TranscodingTempPath || '');
|
$('#txtTranscodingTempPath', page).val(config.TranscodingTempPath || '');
|
||||||
|
|
||||||
Dashboard.hideLoadingMsg();
|
Dashboard.hideLoadingMsg();
|
||||||
|
|
|
@ -93,8 +93,8 @@
|
||||||
|
|
||||||
apiClient.getJSON(apiClient.getUrl('Startup/User')).then(function (user) {
|
apiClient.getJSON(apiClient.getUrl('Startup/User')).then(function (user) {
|
||||||
|
|
||||||
page.querySelector('#txtUsername').value = user.Name;
|
page.querySelector('#txtUsername').value = user.Name || '';
|
||||||
page.querySelector('#txtConnectUserName').value = user.ConnectUserName;
|
page.querySelector('#txtConnectUserName').value = user.ConnectUserName || '';
|
||||||
|
|
||||||
Dashboard.hideLoadingMsg();
|
Dashboard.hideLoadingMsg();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue