From fd4a3d6bbf45373f10ef77bf2ca68c7a3de553b8 Mon Sep 17 00:00:00 2001 From: Eric Bremner <ebremner@uwaterloo.ca> Date: Wed, 14 Jun 2023 10:57:21 -0400 Subject: [PATCH] ISTWCMS-5551: fixing hiding comments for service hours --- uw_ct_service.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uw_ct_service.module b/uw_ct_service.module index f65299a..50b32c3 100644 --- a/uw_ct_service.module +++ b/uw_ct_service.module @@ -97,12 +97,12 @@ function _uw_ct_service_get_location_options(): array { function uw_ct_service_form_node_uw_ct_service_form_alter(array &$form, FormStateInterface $form_state, string $form_id): void { // Unset the table header for comments in the regular days. - unset($form['field_uw_service_hours']['widget']['office_hours']['value']['#header']['comment']); + unset($form['field_uw_service_hours']['widget']['office_hours'][0]['value']['#header']['comment']); // Step through each of the regular days and remove the comments. foreach ($form['field_uw_service_hours']['widget']['office_hours'][0]['value'] as $index => $value) { if (is_int($index)) { - $form['field_uw_service_hours']['widget']['office_hours']['value'][$index]['#field_settings']['comment'] = 0; + $form['field_uw_service_hours']['widget']['office_hours'][0]['value'][$index]['#field_settings']['comment'] = 0; } } -- GitLab