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 1ff586f commit 62c8933Copy full SHA for 62c8933
shiny/render/_data_frame_utils/_tbl_data.py
@@ -202,6 +202,8 @@ def serialize_dtype(col: nw.Series) -> FrameDtype:
202
type_ = "datetime"
203
elif isinstance(dtype, nw.Duration):
204
type_ = "duration"
205
+ elif isinstance(dtype, nw.Time):
206
+ type_ = "time"
207
elif isinstance(dtype, nw.Object):
208
type_ = "object"
209
if series_contains_htmltoolslike(col):
0 commit comments