Fix missing key in table/relation/common_form template
Related to #18834 Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
This commit is contained in:
parent
7237c1857a
commit
26896d1291
@ -87,7 +87,7 @@
|
||||
{% for i in 0..saved_row_cnt %}
|
||||
{% set myfield = save_row[i] %}
|
||||
{# Use an md5 as array index to avoid having special characters in the name attribute (see bug #1746964 ) #}
|
||||
{% set myfield_md5 = column_hash_array[myfield] %}
|
||||
{% set myfield_md5 = column_hash_array[myfield] ?? null %}
|
||||
|
||||
{% set foreign_table = false %}
|
||||
{% set foreign_column = false %}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user