From 87f77a0ba8aed9eb72a0faee5fb68ce44b5bc3a1 Mon Sep 17 00:00:00 2001 From: Eileen McNaughton Date: Wed, 6 Jul 2022 08:46:05 +1200 Subject: [PATCH] Enotice fix --- CRM/Admin/Page/Mapping.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CRM/Admin/Page/Mapping.php b/CRM/Admin/Page/Mapping.php index 1e9d326e54..eb3e596e36 100644 --- a/CRM/Admin/Page/Mapping.php +++ b/CRM/Admin/Page/Mapping.php @@ -127,4 +127,13 @@ class CRM_Admin_Page_Mapping extends CRM_Core_Page_Basic { return parent::run(NULL, NULL, $sort); } + /** + * Get any properties that should always be present in each row (null if no value). + * + * @return array + */ + protected function getExpectedRowProperties(): array { + return ['description']; + } + } -- 2.25.1