Skip to content

Commit 3070c08

Browse files
committed
dreamview: change variable name
Change-Id: I07e627c607a998ad0225a3eb4940c512c01afa92
1 parent af910b5 commit 3070c08

File tree

1 file changed

+3
-3
lines changed
  • modules/dreamview/frontend/src/components/DataProfile

1 file changed

+3
-3
lines changed

modules/dreamview/frontend/src/components/DataProfile/V2xList.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function V2xList() {
1515
/**
1616
* @type {{
1717
* v2xId: string,
18-
* obu_number: string,
18+
* obu_in: string,
1919
* }[]}
2020
*/
2121
const [v2xInfoList, setV2xInfoList] = useState([]);
@@ -62,7 +62,7 @@ function V2xListItem(props) {
6262
/**
6363
* @type {{
6464
* v2xId: string,
65-
* obu_number: string,
65+
* obu_in: string,
6666
* }}
6767
*/
6868
const { item } = props;
@@ -103,7 +103,7 @@ function V2xListItem(props) {
103103
return (
104104
<div className='vehicle-list-item'>
105105
<div className='vehicle-list-item_name'>{
106-
item.obu_number
106+
item.obu_in
107107
}</div>
108108
<V2xListItemStatus status={status} />
109109
{/* 按钮组 */}

0 commit comments

Comments
 (0)