diff options
-rw-r--r-- | includes/admin/views/_concerts_table.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/admin/views/_concerts_table.php b/includes/admin/views/_concerts_table.php index b61a990..a7d9074 100644 --- a/includes/admin/views/_concerts_table.php +++ b/includes/admin/views/_concerts_table.php @@ -31,7 +31,7 @@ if (!class_exists("GiglogAdmin_ConcertsTable")) private function render_concerts_table() : string { - $content = '<table class="assignit">'; + $content = '<div style="overflow-x:auto;"><table class="assignit">'; // $content .= '</tr><th>CITY</th><th>ID</th><th>BAND</th><th>VENUE</th><th>DATE</th></tr>'; $content .= '<tr class="assignithrow"><th>CITY</th><th>DATE</th><th>NAME</th><th>VENUE</th>'; @@ -113,7 +113,7 @@ if (!class_exists("GiglogAdmin_ConcertsTable")) $content .= '</tr>'; $lastType = $concert->venue()->city(); } - $content .= '</table>'; + $content .= '</table></div>'; // return the table return $content; |