Skip to content

Commit 9882dd9

Browse files
committed
Minor: small tables rendered way too large
1 parent 1a5587c commit 9882dd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/datafusion/dataframe_formatter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ def _build_table_container_start(self) -> list[str]:
370370
f"max-height: {self.max_height}px; overflow: auto; border: "
371371
'1px solid #ccc;">'
372372
)
373-
html.append('<table style="border-collapse: collapse; min-width: 100%">')
373+
html.append('<table style="border-collapse: collapse">')
374374
return html
375375

376376
def _build_table_header(self, schema: Any) -> list[str]:

0 commit comments

Comments
 (0)