소스 검색

fix rx.audio playing prop type: str to bool (#1986)

Biresh Biswas 1 년 전
부모
커밋
317b883ec8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      reflex/components/libs/react_player.py

+ 1 - 1
reflex/components/libs/react_player.py

@@ -21,7 +21,7 @@ class ReactPlayerComponent(NoSSRComponent):
     url: Var[str]
 
     # Set to true or false to pause or play the media
-    playing: Var[str]
+    playing: Var[bool]
 
     # Set to true or false to loop the media
     loop: Var[bool]