Skip to content

Commit f945979

Browse files
committed
feat: Add row scope
1 parent 41caf77 commit f945979

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/app/components/SinglePropertyDetail.tsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -39,39 +39,39 @@ const SinglePropertyDetail = ({
3939
<table>
4040
<tbody>
4141
<tr>
42-
<th className="text-left font-normal">Neighborhood</th>
42+
<th scope="row" className="text-left font-normal">Neighborhood</th>
4343
<td>{neighborhood}</td>
4444
</tr>
4545
<tr>
46-
<th className="text-left font-normal">Gun Crime Rate</th>
46+
<th scope="row" className="text-left font-normal">Gun Crime Rate</th>
4747
<td>{guncrime_density}</td>
4848
</tr>
4949
<tr>
50-
<th className="text-left font-normal">Drug Crime</th>
50+
<th scope="row" className="text-left font-normal">Drug Crime</th>
5151
<td>???</td>
5252
</tr>
5353
<tr>
54-
<th className="text-left font-normal">Tree Canopy Gap</th>
54+
<th scope="row" className="text-left font-normal">Tree Canopy Gap</th>
5555
<td>{Math.round(tree_canopy_gap * 100)}%</td>
5656
</tr>
5757
<tr>
58-
<th className="text-left font-normal">Suggested Priority</th>
58+
<th scope="row" className="text-left font-normal">Suggested Priority</th>
5959
<td>{priority_level}</td>
6060
</tr>
6161
<tr>
62-
<th className="text-left font-normal">L&I Violations</th>
62+
<th scope="row" className="text-left font-normal">L&I Violations</th>
6363
<td>???</td>
6464
</tr>
6565
<tr>
66-
<th className="text-left font-normal">Tax delinquency</th>
66+
<th scope="row" className="text-left font-normal">Tax delinquency</th>
6767
<td>???</td>
6868
</tr>
6969
<tr>
70-
<th className="text-left font-normal">Acquisition Process</th>
70+
<th scope="row" className="text-left font-normal">Acquisition Process</th>
7171
<td>{access_process}</td>
7272
</tr>
7373
<tr>
74-
<th className="text-left font-normal">Zip Code</th>
74+
<th scope="row" className="text-left font-normal">Zip Code</th>
7575
<td>{zipcode}</td>
7676
</tr>
7777
</tbody>

0 commit comments

Comments
 (0)