react_hsbc_teller 0.6.1 → 0.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/hsbc.js +1 -1
- package/package.json +1 -1
- package/packages/pages/video/video.jsx +7 -11
package/package.json
CHANGED
|
@@ -2846,8 +2846,8 @@ class Video extends Component {
|
|
|
2846
2846
|
const camera = (
|
|
2847
2847
|
<div class="cameraAnMicrophone">
|
|
2848
2848
|
{
|
|
2849
|
-
this.state.cameraList.map((item) => {
|
|
2850
|
-
return <div>
|
|
2849
|
+
this.state.cameraList.map((item,index) => {
|
|
2850
|
+
return <div key={index}>
|
|
2851
2851
|
<label className="radio">
|
|
2852
2852
|
<input type="radio" name="camere" value={item.actionid} style={{float: 'left'}} checked={this.state.cameraValue == item.actionid} onChange={(e) => this.getCameraValue(e)} /><i></i>
|
|
2853
2853
|
{item.actionname}
|
|
@@ -2862,8 +2862,8 @@ class Video extends Component {
|
|
|
2862
2862
|
const microphone = (
|
|
2863
2863
|
<div>
|
|
2864
2864
|
{
|
|
2865
|
-
this.state.microphoneList.map((item) => {
|
|
2866
|
-
return <div class="cameraAnMicrophone">
|
|
2865
|
+
this.state.microphoneList.map((item,index) => {
|
|
2866
|
+
return <div key={index} class="cameraAnMicrophone">
|
|
2867
2867
|
<label className="radio">
|
|
2868
2868
|
<input type="radio" name="microphone" value={item.actionid} style={{float: 'left'}} checked={this.state.microphoneValue == item.actionid} onChange={(e) => this.getMicrophoneValue(e)} /><i></i>
|
|
2869
2869
|
{item.actionname}
|
|
@@ -2877,8 +2877,8 @@ class Video extends Component {
|
|
|
2877
2877
|
const speaker = (
|
|
2878
2878
|
<div>
|
|
2879
2879
|
{
|
|
2880
|
-
this.state.speakerList.map((item) => {
|
|
2881
|
-
return <div class="cameraAnMicrophone">
|
|
2880
|
+
this.state.speakerList.map((item,index) => {
|
|
2881
|
+
return <div key={index} class="cameraAnMicrophone">
|
|
2882
2882
|
{item.actionname}<br />
|
|
2883
2883
|
</div>
|
|
2884
2884
|
})
|
|
@@ -2986,8 +2986,6 @@ class Video extends Component {
|
|
|
2986
2986
|
className={`publishVideoClass`}
|
|
2987
2987
|
autoPlay
|
|
2988
2988
|
muted={true}
|
|
2989
|
-
webkit-playsinline={true}
|
|
2990
|
-
playsinline={true}
|
|
2991
2989
|
/>
|
|
2992
2990
|
<label style={{ display: 'none' }} id="publish_streamId1" type="text" />
|
|
2993
2991
|
|
|
@@ -3452,9 +3450,7 @@ class Video extends Component {
|
|
|
3452
3450
|
{speaker}
|
|
3453
3451
|
</div>
|
|
3454
3452
|
</Modal>
|
|
3455
|
-
<video className="mixedvideo" id="mixedvideo" autoPlay muted={true} width="0" height="0"
|
|
3456
|
-
webkit-playsinline={true} playsInline={true} x5-playsinline="x5-playsinline"
|
|
3457
|
-
x-webkit-airplay={true}></video>
|
|
3453
|
+
<video className="mixedvideo" id="mixedvideo" autoPlay muted={true} width="0" height="0"></video>
|
|
3458
3454
|
</Spin>
|
|
3459
3455
|
</div>);
|
|
3460
3456
|
}
|