Explorar o código

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

Biresh Biswas hai 1 ano
pai
achega
317b883ec8
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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]