Browse Source

Removed capitalization

Michel Lavoie 2 years ago
parent
commit
5ab877e7b5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      examples/pandas_dataframe/main.py

+ 1 - 1
examples/pandas_dataframe/main.py

@@ -22,7 +22,7 @@ def home():
     with ui.row():
         for c, col in enumerate(df.columns):
             with ui.column():
-                ui.label(col.capitalize())
+                ui.label(col)
                 for r, row in enumerate(df.loc[:, col]):
                     with ui.row().classes("h-8 items-center"):
                         if is_bool_dtype(df[col].dtype):