#8232 Fixed value in password

This commit is contained in:
Daniel Maya 2021-12-03 09:22:39 +01:00
parent 69590afef6
commit 6ead6b8a48

View File

@ -942,7 +942,9 @@ function add_macro_field(macro, row_model_id, type_copy, k) {
.children() .children()
.eq(1) .eq(1)
.children() .children()
.attr("type", "password"); .attr("type", "password")
.removeAttr("value")
.val(macro_value);
} else { } else {
$("#" + row_id) $("#" + row_id)
.children() .children()
@ -955,7 +957,9 @@ function add_macro_field(macro, row_model_id, type_copy, k) {
$("#" + row_id) $("#" + row_id)
.children() .children()
.eq(1) .eq(1)
.attr("type", "password"); .attr("type", "password")
.removeAttr("value")
.val(macro_value);
} else { } else {
$("#" + row_id) $("#" + row_id)
.children() .children()