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 8ac44de commit ce10a37Copy full SHA for ce10a37
shiny/render/_data_frame_utils/_html.py
@@ -2,7 +2,7 @@
2
3
from typing import TYPE_CHECKING, Literal, cast, overload
4
5
-from htmltools import TagNode, is_tag_node
+from htmltools import TagNode
6
7
from ..._typing_extensions import TypeIs
8
from ...types import Jsonifiable
@@ -70,6 +70,8 @@ def ui_must_be_processed(
70
def ui_must_be_processed( # pyright: ignore[reportInconsistentOverload]
71
val: object,
72
):
73
+ from htmltools import is_tag_node
74
+
75
if isinstance(val, str):
76
return False
77
0 commit comments