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 d5c8ad4 commit ba78a6aCopy full SHA for ba78a6a
ui/shared/Revision.jsx
@@ -55,7 +55,12 @@ export class Revision extends React.PureComponent {
55
};
56
57
isBackout = (comment) => {
58
- return comment.search('Backed out') >= 0 || comment.search('Back out') >= 0;
+ // 'Revert' commits directly after migration to Git VCS when no `hg oops` equivalent available.
59
+ return (
60
+ comment.search('Backed out') >= 0 ||
61
+ comment.search('Back out') >= 0 ||
62
+ comment.startsWith('Revert')
63
+ );
64
65
66
render() {
0 commit comments