Small visual tweak to make the user agent the textbox value rather than placeholder

Allows for the user to make small changes to API URI and user agent if needed, previous method would have required re-typing in the entire string with is a PITA.
This commit is contained in:
db-2001 2024-02-10 13:54:24 -05:00
parent 9accca0ad2
commit 1ee17360e5

View File

@ -591,8 +591,8 @@ function OpenSettings(){
GetSettings().then((json) => {
//console.log(json);
settingApiUri.placeholder = apiUri;
settingUserAgent.placeholder = json.userAgent;
settingApiUri.value = apiUri;
settingUserAgent.value = json.userAgent;
//console.log(json.styleSheet);
});
GetLibraryConnectors().then((json) => {