Skip to content

add a whiteboard tag [collect_confirm_failure] to new bugs #8623

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 10, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion ui/shared/BugFiler.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ export class BugFilerClass extends React.Component {
/* Intermittent bugs in the Core :: DOM: Security component need to have the
whiteboard '[domsecurity-intermittent]' to support filtering by the
triagers. Contact person is Christoph Kerschbaumer. */
const whiteboard =
let whiteboard =
isIntermittent && product === 'Core' && component === 'DOM: Security'
? '[domsecurity-intermittent]'
: '';
Expand All @@ -554,6 +554,7 @@ export class BugFilerClass extends React.Component {
if (launchConfirmFailure) {
// Launch confirm failure task
this.handleConfirmFailure();
whiteboard += '[collect_confirm_failure]';
}
// Fetch product information from bugzilla to get version numbers, then
// submit the new bug. Only request the versions because some products
Expand Down