From 67c92b2a4137e470066626baaccb792809179580 Mon Sep 17 00:00:00 2001 From: Liam Morland <lkmorlan@uwaterloo.ca> Date: Thu, 7 Apr 2022 13:48:53 -0400 Subject: [PATCH] Issue #3274071: Show non-matching PDF keys when uploading a new PDF to a form --- src/Form/FillPdfFormForm.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Form/FillPdfFormForm.php b/src/Form/FillPdfFormForm.php index 93dcba4..01b5634 100644 --- a/src/Form/FillPdfFormForm.php +++ b/src/Form/FillPdfFormForm.php @@ -552,7 +552,7 @@ class FillPdfFormForm extends ContentEntityForm { '#prefix' => $this->t("These keys couldn't be found in the new PDF:"), [ '#theme' => 'item_list', - '#items' => array_keys($non_matching_fields), + '#items' => $non_matching_fields, ], ]; $this->messenger()->addWarning($this->renderer->render($message)); -- GitLab