We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f20cde5 commit 19e2c4fCopy full SHA for 19e2c4f
bigframes/display/html.py
@@ -85,8 +85,6 @@ def _render_table_body(dataframe: pd.DataFrame) -> str:
85
dtype = dataframe.dtypes.loc[col_name] # type: ignore
86
align = "right" if _is_dtype_numeric(dtype) else "left"
87
88
- # TODO(b/438181139): Consider semi-exploding ARRAY/STRUCT columns
89
- # into multiple rows/columns like the BQ UI does.
90
if pandas.api.types.is_scalar(value) and pd.isna(value):
91
body_parts.append(
92
f' <td class="cell-align-{align}">'
0 commit comments