Bug 1443023 - Pass missing $timeout prop to BugListItem (#3302)

The failure classification pin button was broken for bug suggestions
that fell under the "all others" category, since the `BugListItem`
for them weren't passed the `$timeout` prop, unlike for the
"open recent" `BugListItem` instance.
This commit is contained in:
Ed Morley 2018-03-05 16:44:48 +00:00 коммит произвёл GitHub
Родитель 39a1cc3224
Коммит 0ac1b711ff
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -80,6 +80,7 @@ class SuggestionsListItem extends React.Component {
escapeHTMLFilter={this.props.escapeHTMLFilter}
suggestion={this.props.suggestion}
highlightCommonTermsFilter={this.props.highlightCommonTermsFilter}
$timeout={this.props.$timeout}
bugClassName={bug.resolution !== "" ? "deleted" : ""}
title={bug.resolution !== "" ? bug.resolution : ""}
/>))}