react_hsbc_teller 0.6.2 → 0.6.3
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
|
@@ -54,8 +54,8 @@ export default class foot extends Component {
|
|
|
54
54
|
const {clickedOcr,clickedFacial,isTranscribing,img,cameraImg,screenName,suspendName,customerList,menus} = this.props
|
|
55
55
|
const content = (
|
|
56
56
|
<div>
|
|
57
|
-
{customerList.map((item)=>{
|
|
58
|
-
return <div className="customer" onClick={this.customerFaceClick.bind(this,item)}>
|
|
57
|
+
{customerList.map((item,index)=>{
|
|
58
|
+
return <div key={index}className="customer" onClick={this.customerFaceClick.bind(this,item)}>
|
|
59
59
|
<img className="imgClass" alt="" src={require("../../assets/img/youke.png").default} />
|
|
60
60
|
<li className="listLi" key={item.customerId}>{item.name}</li>
|
|
61
61
|
</div>
|
|
@@ -2835,8 +2835,8 @@ class Video extends Component {
|
|
|
2835
2835
|
const tabTitleList = (
|
|
2836
2836
|
<div className="button">
|
|
2837
2837
|
{
|
|
2838
|
-
this.state.tabTitles.map((item) => {
|
|
2839
|
-
return <div className={`${this.state.isSelect == item.value ? 'selectSee' : "noSelest"}`} onClick={this.switchSelect.bind(this, item.value)}>
|
|
2838
|
+
this.state.tabTitles.map((item,index) => {
|
|
2839
|
+
return <div key={index} className={`${this.state.isSelect == item.value ? 'selectSee' : "noSelest"}`} onClick={this.switchSelect.bind(this, item.value)}>
|
|
2840
2840
|
{item.name}
|
|
2841
2841
|
</div>
|
|
2842
2842
|
})
|