Skip to content

Commit 0170473

Browse files
Update ListingsTable.jsx
1 parent ffd7ab7 commit 0170473

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/components/ListingsTable.jsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ export default function ListingsTable({
3232
)}
3333
<th className="col-price">Price</th>
3434
{showPriceChange && <th className="col-change">Change</th>}
35+
<th>Year</th>
3536
<th>Trim</th>
3637
<th>Mileage</th>
3738
{showStatus && <th className="col-status">Status</th>}
@@ -61,6 +62,7 @@ export default function ListingsTable({
6162
)}
6263
</td>
6364
)}
65+
<td data-label="Trim">{listing.year || '-'}</td>
6466
<td data-label="Trim">{listing.trim || '-'}</td>
6567
<td>{listing.mileage.toLocaleString()} mi</td>
6668
{showStatus && (

0 commit comments

Comments
 (0)