瀏覽代碼

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]