Bug 1562852 - fix Perherder Alerts search input (#5127)

change navigatePage function to update state and params and fetch new alert summaries instead
of using angular state.go since that causes the page to re-mount on navigation
This commit is contained in:
Sarah Clements 2019-07-09 14:15:16 -07:00 коммит произвёл GitHub
Родитель 42ce2e8002
Коммит 49c5552891
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 6 удалений

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

@ -87,12 +87,8 @@ export class AlertsView extends React.Component {
};
navigatePage = page => {
const { framework, status } = this.state;
this.props.$state.go('alerts', {
page,
framework: framework.id,
status: summaryStatusMap[status],
});
this.setState({ page }, this.fetchAlertSummaries);
this.props.validated.updateParams({ page });
};
getCurrentPages = () => {