Skip to content

Commit 0e4b206

Browse files
committed
don't type-cast value
1 parent b2852d7 commit 0e4b206

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crystal_toolkit/helpers/layouts.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ def get_data_list(data: dict[str, str | int | float | list[str | int | float]]):
382382
contents = []
383383
for title, value in data.items():
384384
label = Label(title) if isinstance(title, str) else title
385-
contents.append(html.Tr([html.Td(label), html.Td(str(value))]))
385+
contents.append(html.Tr([html.Td(label), html.Td(value)]))
386386
return html.Table([html.Tbody(contents)], className="table")
387387

388388

0 commit comments

Comments
 (0)