Browse Source

callable vars are not good

Khaleel Al-Adhami 4 tháng trước cách đây
mục cha
commit
c6e2368c95
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      reflex/components/core/foreach.py

+ 1 - 1
reflex/components/core/foreach.py

@@ -33,7 +33,7 @@ def foreach(
     Raises:
         ForeachVarError: If the iterable is of type Any.
     """
-    iterable = LiteralVar.create(iterable)
+    iterable = LiteralVar.create(iterable).guess_type()
     if isinstance(iterable, ObjectVar):
         iterable = iterable.items()