From 1ee17360e5aa048916af726444faa4b09ffd0ff0 Mon Sep 17 00:00:00 2001 From: db-2001 Date: Sat, 10 Feb 2024 13:54:24 -0500 Subject: [PATCH] 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. --- Website/interaction.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Website/interaction.js b/Website/interaction.js index 59fd3aa..e378440 100644 --- a/Website/interaction.js +++ b/Website/interaction.js @@ -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) => {