소스 검색

callable vars are not good

Khaleel Al-Adhami 4 달 전
부모
커밋
c6e2368c95
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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()