diff --git a/python/fusion_engine_client/analysis/analyzer.py b/python/fusion_engine_client/analysis/analyzer.py index cfc9b6b8..a49b8136 100755 --- a/python/fusion_engine_client/analysis/analyzer.py +++ b/python/fusion_engine_client/analysis/analyzer.py @@ -2132,44 +2132,166 @@ def plot_events(self): if system_time_ns in times_before_resets: rows[-1][2] = f'{(times_before_resets[system_time_ns]):.3f}' - table_html = _data_to_table(table_columns, rows, row_major=True, id='event_log') + table_data = ',\n '.join([repr(row) for row in rows]) body_html = """\ """ + f"""\
{table_html}+ +
+ """ self._add_page(name='event_log', html_body=body_html, title="Event Log")