Skip to content

Commit eac2c7b

Browse files
authored
Merge pull request #66 from RoelVB/dev
Release 1.4.1
2 parents d5d458b + d5526b6 commit eac2c7b

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed

dist/ChromeKeePass.zip

182 KB
Binary file not shown.

dist/EdgeKeePass.zip

182 KB
Binary file not shown.

dist/manifest.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
"name": "ChromeKeePass",
55
"description": "Chrome extension for automatically entering credentials from KeePass/KeeWeb",
6-
"version": "1.4",
6+
"version": "1.4.1",
77

88
"commands": {
99
"redetect_fields": {

src/classes/PageControl.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export default class PageControl
7878
prevVisibleField = $input;
7979
}
8080
} else if (inputType === 'password' && $input.is($(passwordField))) { // Found our password field?
81-
let controlField = $input.is(':visible') ? prevVisibleField : prevField;
81+
let controlField = $input.is(':visible') ? prevField : prevVisibleField; // When the passwordfield is visible, we don't care if the usernamefield is visible, otherwise we need a visible usernamefield
8282
if (!controlField && $input.is(':visible')) {
8383
// We didn't find the username field. Check if password field is actually visible
8484
controlField = $passwordField;

0 commit comments

Comments
 (0)