File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
web/themes/custom/fds_redwhite_theme Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -254,14 +254,14 @@ function fds_redwhite_theme_preprocess_office_hours(&$variables) {
254
254
foreach ($office_hours as $info) {
255
255
$label = $info['label'];
256
256
$label_length = max($label_length, mb_strlen($label));
257
-
258
257
$items[] = [
259
258
'label' => $label,
260
259
'slots' => ['#type' => 'markup', '#markup' => $info['formatted_slots']],
261
260
'comments' => ['#type' => 'markup', '#markup' => $info['comments']],
262
261
'suffix' => $variables['item_separator'],
263
262
// Is open indicator.
264
- 'is_open' => $info['closed'] == null,
263
+ // 'is_open' => ($info['closed'] == null)
264
+ 'is_open' => true,
265
265
// @todo Use $variables['item_separator'] in office-hours.html.twig.
266
266
];
267
267
}
You can’t perform that action at this time.
0 commit comments