Skip to content

Commit ccea085

Browse files
committed
Fix issue with table view getting the hours for each row.
1 parent 4e88614 commit ccea085

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

public/partials/table.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<tr<?php $day['is_today'] ? ' class="today"' : '' ?>>
1616
<td><?php echo $date->format( 'l' ) ?></td>
1717
<td><?php echo $date->format( 'M j' ) ?></td>
18-
<td><?php echo $day['text'] ?></td>
18+
<td><?php echo $day['text']['hours'] ?></td>
1919
</tr>
2020
<?php endfor ?>
2121
</tbody>

0 commit comments

Comments
 (0)