Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion marimo/_plugins/ui/_impl/tables/table_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,9 @@ def get_field_type(
pass

def get_field_types(self) -> FieldTypes:
# Some column names may be non-string (sqlalchemy quoted names), so we convert them to strings
return [
(column_name, self.get_field_type(column_name))
(str(column_name), self.get_field_type(column_name))
for column_name in self.get_column_names()
]

Expand Down
Loading