Skip to content

Commit 4689518

Browse files
authored
Do not include metadata when rendering table in html (#11463)
1 parent 8fdb4cb commit 4689518

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

rerun_py/src/catalog/dataframe_rendering.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,10 @@ impl PyRerunHtmlTable {
115115
has_more: bool,
116116
table_uuid: &str,
117117
) -> PyResult<String> {
118-
let batch_opts = RecordBatchFormatOpts::default();
118+
let batch_opts = RecordBatchFormatOpts {
119+
include_metadata: false,
120+
..Default::default()
121+
};
119122

120123
let tables = batches
121124
.into_iter()

0 commit comments

Comments
 (0)