Skip to content
Merged
Changes from 1 commit
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
2 changes: 2 additions & 0 deletions shiny/render/_data_frame_utils/_tbl_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,8 @@ def serialize_dtype(col: nw.Series) -> FrameDtype:
type_ = "datetime"
elif isinstance(dtype, nw.Duration):
type_ = "duration"
elif isinstance(dtype, nw.Time):
type_ = "time"
elif isinstance(dtype, nw.Object):
type_ = "object"
if series_contains_htmltoolslike(col):
Expand Down
Loading