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:
Maurício Meneghini Fauth 2023-12-08 15:24:02 -03:00
parent 7237c1857a
commit 26896d1291
No known key found for this signature in database
GPG Key ID: 6A16FD38AFC89CC8

View File

@ -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 %}