Bug 1725334 - Graphs View - Page does not reset when clicking header fixed (#7259)

* Bug 1725334 - Graphs View - Page does not reset when clicking header fixed

* Bug 1725334 - Graphs View - address request changes
This commit is contained in:
Sorin Toma 2021-09-08 14:48:41 +03:00 коммит произвёл GitHub
Родитель a22fc05525
Коммит d75a5fd143
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 16 добавлений и 0 удалений

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

@ -55,6 +55,22 @@ class GraphsView extends React.Component {
this.checkQueryParams();
}
componentDidUpdate(prevProps) {
const { location } = this.props;
const { testData, loading } = this.state;
if (
location.search === '' &&
testData.length !== 0 &&
loading !== true &&
location.search !== prevProps.location.search
) {
// eslint-disable-next-line react/no-did-update-set-state
this.setState({
testData: [],
});
}
}
getDefaultTimeRange = () => {
const { location } = this.props;
const { timerange } = parseQueryParams(location.search);