react_hsbc_teller 0.6.3 → 0.6.4
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/package.json
CHANGED
|
@@ -67,8 +67,8 @@ export default class foot extends Component {
|
|
|
67
67
|
const defaultList = (
|
|
68
68
|
<div className="total totalTwo">
|
|
69
69
|
{
|
|
70
|
-
menus.map((item)=>{
|
|
71
|
-
return <div className='footHover'>
|
|
70
|
+
menus.map((item,index)=>{
|
|
71
|
+
return <div key={index}className='footHover'>
|
|
72
72
|
{
|
|
73
73
|
isTranscribing &&
|
|
74
74
|
<div className="one" onClick={this.transcribingClick.bind(this)}>
|
|
@@ -2821,7 +2821,7 @@ class Video extends Component {
|
|
|
2821
2821
|
<span className='labelClass'>
|
|
2822
2822
|
{
|
|
2823
2823
|
meetingInfo.customers.map((item, index) => {
|
|
2824
|
-
return <label>
|
|
2824
|
+
return <label key={index}>
|
|
2825
2825
|
{item}
|
|
2826
2826
|
{
|
|
2827
2827
|
meetingInfo.customers.length > 0 && index != meetingInfo.customers.length - 1 && <label>,</label>
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
font-weight: bold;
|
|
43
43
|
height: 170px;
|
|
44
44
|
position: relative;
|
|
45
|
-
background:
|
|
45
|
+
background: rgba(0, 0, 0, 0.65);
|
|
46
46
|
margin-bottom: 20px;
|
|
47
47
|
border-radius: 6px;
|
|
48
48
|
}
|
|
@@ -166,7 +166,7 @@
|
|
|
166
166
|
.video{
|
|
167
167
|
width: 100%;
|
|
168
168
|
height: 100%;
|
|
169
|
-
background:
|
|
169
|
+
background: rgba(0, 0, 0, 0.65);
|
|
170
170
|
}
|
|
171
171
|
}
|
|
172
172
|
}
|