Skip to content

Commit 59879b1

Browse files
committed
Bug 1967629 - add button to force filing a bug with bugfiler, omitting internal issue
This is needed, e.g. for * permanent failures of regular tasks which need to be tracked and don't require a backout like backlog tasks * central-as-beta simulations failures or similar
1 parent 68955f6 commit 59879b1

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

ui/shared/tabs/failureSummary/SuggestionsListItem.jsx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { Button } from 'reactstrap';
44
import { Link } from 'react-router-dom';
55
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
66
import {
7+
faBug,
78
faCircleExclamation,
89
faFilter,
910
} from '@fortawesome/free-solid-svg-icons';
@@ -216,6 +217,15 @@ export default class SuggestionsListItem extends React.Component {
216217
className="logviewer-icon ml-1"
217218
/>
218219
</a>
220+
<Button
221+
className="bg-light py-1 px-2 ml-2"
222+
outline
223+
style={{ fontSize: '8px' }}
224+
onClick={() => toggleBugFiler(suggestion)}
225+
title="File a bug for this failure"
226+
>
227+
<FontAwesomeIcon icon={faBug} />
228+
</Button>
219229
</span>
220230
)}
221231
</div>

0 commit comments

Comments
 (0)