fixed macro default value not loading

This commit is contained in:
alejandro.campos@artica.es 2022-06-07 11:20:51 +02:00
parent 851f1a19ce
commit 7aa40617f8
1 changed files with 2 additions and 1 deletions

View File

@ -849,7 +849,8 @@ function add_macro_field(macro, row_model_id, type_copy, k) {
$macro_field
.find("input")
.first()
.attr("name", macro_macro);
.attr("name", macro_macro)
.val(macro_value);
$macro_field.attr("class", "macro_field");