Skip to content

Commit b8fd002

Browse files
bring trim column back
1 parent 2c56271 commit b8fd002

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>Trim</th>
3536
<th>Mileage</th>
3637
{showStatus && <th className="col-status">Status</th>}
3738
{showDaysOnMarket && <th className="col-days">On Market</th>}
@@ -60,6 +61,7 @@ export default function ListingsTable({
6061
)}
6162
</td>
6263
)}
64+
<td data-label="Trim">{listing.trim || '-'}</td>
6365
<td>{listing.mileage.toLocaleString()} mi</td>
6466
{showStatus && (
6567
<td className="col-status" data-label="Status">

0 commit comments

Comments
 (0)