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

This commit is contained in:
Biresh Biswas 2023-10-18 01:33:57 +05:30 committed by GitHub
parent df09c716c6
commit 317b883ec8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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]