We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59879b1 commit 2424ddcCopy full SHA for 2424ddc
ui/shared/tabs/failureSummary/FailureSummaryTab.jsx
@@ -84,10 +84,10 @@ class FailureSummaryTab extends React.Component {
84
}));
85
};
86
87
- bugFilerCallback = (data) => {
+ bugFilerCallback = async (data) => {
88
const { addBug } = this.props;
89
90
- addBug({ id: data.id, newBug: data.id });
+ await addBug({ id: data.id, newBug: data.id });
91
window.dispatchEvent(new CustomEvent(thEvents.saveClassification));
92
// Open the newly filed bug in a new tab or window for further editing
93
window.open(data.url);
0 commit comments