mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-27 15:54:29 +02:00
#8232 Fixed value in password
This commit is contained in:
parent
69590afef6
commit
6ead6b8a48
@ -942,7 +942,9 @@ function add_macro_field(macro, row_model_id, type_copy, k) {
|
||||
.children()
|
||||
.eq(1)
|
||||
.children()
|
||||
.attr("type", "password");
|
||||
.attr("type", "password")
|
||||
.removeAttr("value")
|
||||
.val(macro_value);
|
||||
} else {
|
||||
$("#" + row_id)
|
||||
.children()
|
||||
@ -955,7 +957,9 @@ function add_macro_field(macro, row_model_id, type_copy, k) {
|
||||
$("#" + row_id)
|
||||
.children()
|
||||
.eq(1)
|
||||
.attr("type", "password");
|
||||
.attr("type", "password")
|
||||
.removeAttr("value")
|
||||
.val(macro_value);
|
||||
} else {
|
||||
$("#" + row_id)
|
||||
.children()
|
||||
|
Loading…
x
Reference in New Issue
Block a user