浏览代码

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]