Skip to content

Commit fbd2abb

Browse files
committed
Set and id for every entry row.
This will help with scroll anchors in the future.
1 parent 96741db commit fbd2abb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/exceptions-table/exceptions-table.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ export class ExceptionsTable extends LitElement {
136136
<tbody>
137137
${this.filteredEntries.map(
138138
(entry) => html`
139-
<tr>
139+
<tr id=${entry.id ?? ""}>
140140
<td>
141141
<bug-label .bugMeta=${this.getBugMetaForEntry(entry)}></bug-label>
142142
</td>

0 commit comments

Comments
 (0)