Skip to content

Commit 20f1cb5

Browse files
committed
Reintroduce bug number in bug label.
This was dropped accidentally when refactoring the Bugzilla API request code.
1 parent 7c08bb0 commit 20f1cb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bug-label.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export class BugLabel extends LitElement {
5151
href="https://bugzilla.mozilla.org/show_bug.cgi?id=${this.bugMeta.id}"
5252
target="_blank"
5353
rel="noopener noreferrer"
54-
title=${this.bugMeta.summary}
54+
title=${`Bug ${this.bugMeta.id}: ${this.bugMeta.summary}`}
5555
>
5656
<img
5757
class="bug-icon ${!this.bugMeta.isOpen ? "closed" : ""}"

0 commit comments

Comments
 (0)