Преглед изворни кода

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]