Replaced "Target Applications" with "Included Apps" and "Excluded Apps"

This commit is contained in:
nutty
2026-07-23 15:58:11 +10:00
parent 1c3ddbd907
commit df2c740623
3 changed files with 71 additions and 16 deletions
+1
View File
@@ -101,6 +101,7 @@ function LoadJSON(settingsJson) {
inputElement.id = setting.id; //Added setting ID
inputElement.value = settingsMap.has(setting.id) ? settingsMap.get(setting.id) : setting.defaultValue;
inputElement.autocomplete = 'new-password';
inputElement.placeholder = setting.placeholder ? setting.placeholder : '';
break;
case 'password':
inputElement = document.createElement('input');