Fix error when trying to hide icon. (Failed to execute removeChild on Node: The node to be removed is not a child of this node.)

This commit is contained in:
Stefan Sundin 2022-01-01 21:39:41 -08:00
parent f9a088882d
commit 75a77a4bc5
2 changed files with 2 additions and 2 deletions

View file

@ -224,7 +224,7 @@ kpxcPasswordDialog.trigger = async function() {
kpxcPasswordDialog.showDialog = function(field, icon) {
if (!kpxcFields.isVisible(field)) {
document.body.removeChild(icon);
icon.parentNode.removeChild(icon);
field.removeAttribute('kpxc-password-field');
return;
}

View file

@ -112,7 +112,7 @@ UsernameFieldIcon.prototype.createIcon = function(field) {
const iconClicked = async function(field, icon) {
if (!kpxcFields.isVisible(field)) {
document.body.removeChild(icon);
icon.parentNode.removeChild(icon);
field.removeAttribute('kpxc-username-field');
return;
}