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

Update src/scripts/wizarduserpage.js

Co-Authored-By: RazeLighter777 <jtsuess19146@marmionacademy.org>
This commit is contained in:
Claus Vium 2019-01-29 11:38:57 -06:00 committed by GitHub
parent d37919cbf0
commit ba0c888960
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -55,7 +55,7 @@ define(["loading", "globalize", "dashboardcss", "emby-input", "emby-button", "em
apiClient = getApiClient();
apiClient.getJSON(apiClient.getUrl("Startup/User")).then(function(user) {
page.querySelector("#txtUsername").value = user.Name || "",
page.querySelector("#txtManualPassword").value = user.Password || "",
page.querySelector("#txtManualPassword").value = user.Password || "";
loading.hide()
})
}