Skip to content

Commit 8e1ed67

Browse files
committed
Minor: small tables rendered way too large
1 parent fb8096b commit 8e1ed67

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
@@ -368,7 +368,7 @@ def _build_table_container_start(self) -> list[str]:
368368
f"max-height: {self.max_height}px; overflow: auto; border: "
369369
'1px solid #ccc;">'
370370
)
371-
html.append('<table style="border-collapse: collapse; min-width: 100%">')
371+
html.append('<table style="border-collapse: collapse">')
372372
return html
373373

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

0 commit comments

Comments
 (0)