Merge pull request #2740 from keepassxreboot/fix/incorrect_fields_variable

Fix incorrect fields variable
This commit is contained in:
Sami Vänttinen 2025-11-02 13:33:42 +02:00 committed by GitHub
commit 2fb4b371e6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -674,7 +674,7 @@ kpxcCustomLoginFieldsBanner.handleTopWindowMessage = function(args) {
kpxcCustomLoginFieldsBanner.selection.totp = selection;
kpxcCustomLoginFieldsBanner.setSelectedField();
} else if (message === 'string_field_selected') {
kpxcCustomLoginFieldsBanner.selection.stringFields = selection;
kpxcCustomLoginFieldsBanner.selection.fields = selection;
kpxcCustomLoginFieldsBanner.setSelectedField();
} else if (message === 'enable_clear_data_button') {
kpxcCustomLoginFieldsBanner.buttons.clearData.style.display = 'inline-block';