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:
parent
9accca0ad2
commit
1ee17360e5
@ -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) => {
|
||||
|
Loading…
Reference in New Issue
Block a user