1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 09:42:10 +02:00

GIT_SILENT Fix password autofill after d8a706f3

Signed-off-by: Juraj Oravec <jurajoravec@mailo.com>
This commit is contained in:
Juraj Oravec 2021-03-17 08:17:45 +01:00
parent c978521e33
commit 2b64efc7f7
Signed by: SGOrava
GPG Key ID: 13660A3F1D9F093B

View File

@ -232,7 +232,7 @@ QString Scripts::completeFormData(const QByteArray &data)
" var type = input.type.toLowerCase();"
" if (type != 'text' && type != 'password' && type != 'email')"
" continue;"
" if (input.name == key && input.name != "") {"
" if (input.name == key && input.name != '') {"
" input.value = val;"
" input.dispatchEvent(new Event('change'));"
" }"