From 278eaaf48d6236cb68494ec80fdf5aae81ada205 Mon Sep 17 00:00:00 2001 From: varjolintu Date: Tue, 27 Nov 2018 14:47:22 +0200 Subject: [PATCH] Enable all features when adding site manually to Site Preferences --- keepassxc-browser/options/options.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/keepassxc-browser/options/options.js b/keepassxc-browser/options/options.js index bccce52..8e20443 100644 --- a/keepassxc-browser/options/options.js +++ b/keepassxc-browser/options/options.js @@ -334,11 +334,11 @@ options.initSitePreferences = function() { tr.data('url', value); tr.attr('id', 'tr-scf' + newValue); tr.children('td:first').text(value); - tr.children('td:nth-child(2)').children('select').val(IGNORE_NORMAL); + tr.children('td:nth-child(2)').children('select').val(IGNORE_NOTHING); $('#tab-site-preferences table tbody:first').append(tr); $('#tab-site-preferences table tbody:first tr.empty:first').hide(); - options.settings['sitePreferences'].push({url: value, ignore: IGNORE_NORMAL, usernameOnly: false}); + options.settings['sitePreferences'].push({url: value, ignore: IGNORE_NOTHING, usernameOnly: false}); options.saveSettings(); $('#manualUrl').val('');