File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed
src/core/components/Video Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
This file was generated using [ @jscutlery/semver ] ( https://github.com/jscutlery/semver ) .
4
4
5
+ ## [ 1.6.1] ( https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.6.0...@stream-io/video-react-sdk-1.6.1 ) (2024-10-04)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * video should be enabled by default ([ 7340041] ( https://github.com/GetStream/stream-video-js/commit/73400414d472d39701fd31b54ac927a8a8865151 ) )
11
+
5
12
## [ 1.6.0] ( https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.5.0...@stream-io/video-react-sdk-1.6.0 ) (2024-10-03)
6
13
7
14
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @stream-io/video-react-sdk" ,
3
- "version" : " 1.6.0 " ,
3
+ "version" : " 1.6.1 " ,
4
4
"packageManager" :
" [email protected] " ,
5
5
"main" : " ./dist/index.cjs.js" ,
6
6
"module" : " ./dist/index.es.js" ,
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ export type VideoProps = ComponentPropsWithoutRef<'video'> & {
23
23
/**
24
24
* Pass false to disable rendering video and render fallback
25
25
* even if the participant has published video.
26
+ * @default true
26
27
*/
27
28
enabled ?: boolean ;
28
29
/**
@@ -64,7 +65,7 @@ export type VideoProps = ComponentPropsWithoutRef<'video'> & {
64
65
} ;
65
66
66
67
export const Video = ( {
67
- enabled,
68
+ enabled = true ,
68
69
mirror,
69
70
trackType,
70
71
participant,
You can’t perform that action at this time.
0 commit comments